mapName property

String mapName

The name of the map.

Implementation

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