jump<T extends Object?> method

Future<T?> jump<T extends Object?>(
  1. String route, {
  2. Object? arguments,
})

Requests the wizard to jump to a specific page. Optionally, arguments can be passed to the page.

Implementation

Future<T?> jump<T extends Object?>(String route, {Object? arguments}) =>
    widget._controller.jump(route, arguments: arguments);