removeAllFeatureLayer method
Implementation
Future<void> removeAllFeatureLayer() async {
const method = '/removeAllFeatureLayers';
try {
await _channel.invokeMethod(method);
onRemoveAllFeatureChannelResponse();
} on PlatformException catch (e) {
if(kDebugMode) print(e);
}
}