canGoBack method
Returns a boolean value indicating whether the WebView can move backward.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebView.canGoBack)
- iOS (Official API - WKWebView.canGoBack)
- MacOS (Official API - WKWebView.canGoBack)
- Windows (Official API - ICoreWebView2.get_CanGoBack)
Implementation
Future<bool> canGoBack() {
throw UnimplementedError(
'canGoBack is not implemented on the current platform');
}