clearCookies method

Future<bool> clearCookies()

Clears all cookies for all WebView instances.

Returns true if cookies were present before clearing, else false. Soon to be deprecated. 'Use WebViewCookieManagerPlatform.clearCookies instead.

Implementation

Future<bool> clearCookies() {
  throw UnimplementedError(
      'WebView clearCookies is not implemented on the current platform');
}