getCookies method

Future<List<WebViewCookie>> getCookies(
  1. Uri url
)
inherited

Returns a list of existing cookies for the specified domain from all WebView instances of the application.

Implementation

Future<List<WebViewCookie>> getCookies(Uri url) {
  throw UnimplementedError(
    'getCookies is not implemented on the current platform',
  );
}