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