clearImageCache method

Future<bool> clearImageCache()

Clears any cached image thumbnails/previews.

Returns true if the cache was successfully cleared

Example:

final success = await MediaManagerPlatform.instance.clearImageCache();

Implementation

Future<bool> clearImageCache() {
  throw UnimplementedError('clearImageCache() has not been implemented.');
}