sublayerType property
The type of sublayer in the ArcGIS map service.
ArcGISMapServiceSublayerType.unknown if an error occurs.
Implementation
ArcGISMapServiceSublayerType get sublayerType {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ArcGISMapServiceSublayerInfo_getSublayerType(
_handle, errorHandler);
});
return ArcGISMapServiceSublayerType._fromCoreValue(coreValue);
}