copyrightText property

String copyrightText

The copyright text of the shapefile.

Shapefile metadata values are read from the associated .xml file.

Implementation

String get copyrightText {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ShapefileInfo_getCopyrightText(
      _handle,
      errorHandler,
    );
  });
  return stringHandle.toDartString();
}