back<T extends Object?> method

void back<T extends Object?>([
  1. T? result
])

Requests the wizard to show the previous page. Optionally, result can be returned to the previous page.

onPressed: Wizard.of(context).back

Implementation

void back<T extends Object?>([T? result]) => widget._controller.back(result);