goBackOrForward method

Future<void> goBackOrForward({
  1. required int steps,
})

Goes to the history item that is the number of steps away from the current item. Steps is negative if backward and positive if forward.

Supported Platforms/Implementations:

Implementation

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