credits property

String credits

The credits of the shapefile.

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

Implementation

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