clearImageCache method

  1. @override
Future<bool> clearImageCache()
override

Clears cached image thumbnails. Returns true if the operation succeeded. Example:

bool success = await MethodChannelMediaManager().clearImageCache();

Implementation

@override
Future<bool> clearImageCache() async {
  final bool result = await methodChannel.invokeMethod('clearImageCache');
  return result;
}