loadServiceFeatureTable method
Implementation
Future<void> loadServiceFeatureTable(AGMLFeatureServiceLayer arcGISMapServiceFeatureLayer) async {
const method = '/loadServiceFeatureTable';
try {
final channelResponse = await _channel.invokeMethod(method, arcGISMapServiceFeatureLayer.toMap()) as String;
onLoadServiceFeatureChannelResponse(arcGISMapServiceFeatureLayer, channelResponse);
} on PlatformException catch(e) {
if(kDebugMode) print(e);
}
}