removeAllFeatureLayer method

Future<void> removeAllFeatureLayer()

Implementation

Future<void> removeAllFeatureLayer() async {
  const method = '/removeAllFeatureLayers';

  try {
    await _channel.invokeMethod(method);
    onRemoveAllFeatureChannelResponse();
  } on PlatformException catch (e) {
    if(kDebugMode) print(e);
  }
}