clearImageCache method
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;
}