back method

  1. @override
void back([
  1. T? result
])
override

Navigates back in the navigation stack.

Implementation

@override
void back([T? result]) {
  _checkIfCanBack();
  _popWithResult(result);
  notifyListeners();
}