clearCache method

Future<bool> clearCache()

Clears the cache of the player, returns true if succeeded.

Implementation

Future<bool> clearCache() async {
  if (_isDisposedOrNotInitialized) {
    return false;
  }
  return _videoPlayerPlatform.clearCache();
}