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