clearHistory method
Clears the internal back/forward list.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebView.clearHistory)
Implementation
@override
Future<void> clearHistory() async {
Map<String, dynamic> args = <String, dynamic>{};
return await channel?.invokeMethod('clearHistory', args);
}