invalidateAmbientCache method

  1. @override
Future invalidateAmbientCache()
override

Implementation

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