description property
The description of the shapefile.
Shapefile metadata values are read from the associated .xml file.
Implementation
String get description {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ShapefileInfo_getDescription(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}