goBack method
Goes back in the history of the WebView.
Supported Platforms/Implementations:
- Android native WebView (Official API - WebView.goBack)
- iOS (Official API - WKWebView.goBack)
Implementation
Future<void> goBack() async {
Map<String, dynamic> args = <String, dynamic>{};
await _channel.invokeMethod('goBack', args);
}