loadServiceFeatureTable method

Future<void> loadServiceFeatureTable(
  1. AGMLFeatureServiceLayer arcGISMapServiceFeatureLayer
)

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);
  }
}