clearCache method

  1. @override
Future<void> clearCache()
override

Clear the cache.

Implementation

@override
Future<void> clearCache() async {
  try {
    await methodChannel.invokeMethod('clearCache');
  } on PlatformException catch (e) {
    throw _handleError(e);
  }
}