prefetch method
Triggers native prefetching of initial bytes for video url.
Implementation
@override
Future<void> prefetch(String url, int bytes) async {
await methodChannel.invokeMethod<void>(
'prefetch',
<String, dynamic>{
'url': url,
'bytes': bytes,
},
);
}