canGoBackOrForward method

Future<bool> canGoBackOrForward({
  1. required int steps,
})

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.

Supported Platforms/Implementations:

Implementation

Future<bool> canGoBackOrForward({required int steps}) async {
  Map<String, dynamic> args = <String, dynamic>{};
  args.putIfAbsent('steps', () => steps);
  return await _channel.invokeMethod('canGoBackOrForward', args);
}