isCached method

Future<bool> isCached(
  1. String url
)

Check if video is fully cached.

Implementation

Future<bool> isCached(String url) async {
  return CacheMetadataStore.isComplete(url);
}