cancelPrefetch method
Implementation
@override
Future<void> cancelPrefetch(String url) async {
try {
await methodChannel.invokeMethod<void>(
'cancelPrefetch',
<String, dynamic>{'url': url},
);
} catch (_) {
// Ignore cancellation errors
}
}