serviceType property
The type of data held in the layer on the service.
Indicates the type of data contained in the layer, e.g., table row, geometric feature, annotation or dimension feature.
Implementation
ArcGISFeatureLayerInfoServiceType get serviceType {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_FeatureServiceLayerIdInfo_getServiceType(
_handle, errorHandler);
});
return ArcGISFeatureLayerInfoServiceType._fromCoreValue(coreValue);
}