clearAmbientCache method

  1. @override
Future clearAmbientCache()
override

Implementation

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