back<T> method

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

Pops the current route and optionally returns result.

Implementation

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