invalidateAmbientCache method
Implementation
@override
Future invalidateAmbientCache() async {
try {
await _channel.invokeMethod('map#invalidateAmbientCache');
return null;
} on PlatformException catch (e) {
return Future.error(e);
}
}