clearCache method

  1. @override
Future<void> clearCache()

Not supported on Linux because the underlying browser does not provide such a feature.

See WebViewController.clearCache or WebViewPlatformController.clearCache for the original descriptions.

Implementation

@override
Future<void> clearCache() {
  throw UnimplementedError(
      'WebView clearCache is not implemented on the current platform');
}