serviceDescription property

String serviceDescription

The ArcGIS map service description.

Implementation

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