clearWebsiteData method

Future<void> clearWebsiteData()

Clear associated website data accrued from browsing activity within your app. This includes all local storage, cached resources, and cookies.

NOTE for iOS: available on iOS 16.0+.

Officially Supported Platforms/Implementations:

Implementation

Future<void> clearWebsiteData() {
  throw UnimplementedError(
      'clearWebsiteData is not implemented on the current platform');
}