next<T extends Object?> method

Future<T?> next<T extends Object?>({
  1. Object? arguments,
})

Requests the wizard to show the next page. Optionally, arguments can be passed to the next page.

onPressed: Wizard.of(context).next

Implementation

Future<T?> next<T extends Object?>({Object? arguments}) =>
    widget._controller.next(arguments: arguments);