canGoBackOrForward method
Returns a boolean value indicating whether the WebView can go back or forward the given number of steps. Steps is negative if backward and positive if forward.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebView.canGoBackOrForward)
- iOS
- MacOS
- Windows
Implementation
Future<bool> canGoBackOrForward({required int steps}) {
throw UnimplementedError(
'canGoBackOrForward is not implemented on the current platform');
}