setAcceptThirdPartyCookies method

Future<void> setAcceptThirdPartyCookies(
  1. bool accept
)

Sets whether the WebView should allow third party cookies to be set. Allowing third party cookies is a per WebView policy and can be set differently on different WebView instances.

Implementation

Future<void> setAcceptThirdPartyCookies(bool accept) {
  throw UnimplementedError(
      "WebView acceptThirdPartyCookies is not implemented on the current platform");
}