deleteOrigin method
Clears the storage currently being used by both the Application Cache and Web SQL Database APIs by the given origin
.
The origin is specified using its string representation.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebStorage.deleteOrigin)
Implementation
@override
Future<void> deleteOrigin({required String origin}) async {
Map<String, dynamic> args = <String, dynamic>{};
args.putIfAbsent("origin", () => origin);
await channel?.invokeMethod('deleteOrigin', args);
}