removeSessionCookies method
Removes all session cookies, which are cookies without an expiration date.
The return value indicates whether any cookies were removed.
Officially Supported Platforms/Implementations:
- Android WebView (Official API - CookieManager.removeSessionCookies)
Use the PlatformCookieManager.isMethodSupported method to check if this method is supported at runtime.
Implementation
Future<bool> removeSessionCookies() => platform.removeSessionCookies();