prefetch method

  1. @override
Future<void> prefetch(
  1. String url,
  2. int bytes
)
override

Implementation

@override
Future<void> prefetch(String url, int bytes) async {
  await methodChannel.invokeMethod<void>(
    'prefetch',
    <String, dynamic>{
      'url': url,
      'bytes': bytes,
    },
  );
}