serviceType property

ArcGISMapServiceSublayerType serviceType

The type of data held in the layer on the service.

Implementation

ArcGISMapServiceSublayerType get serviceType {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_MapServiceLayerIdInfo_getServiceType(
        _handle, errorHandler);
  });
  return ArcGISMapServiceSublayerType._fromCoreValue(coreValue);
}