back<T> method
Pops the current route and optionally returns result
.
Implementation
@override
void back<T>([T? result]) {
_checkIfCanBack();
_popWithResult<T>(result);
notifyListeners();
}
Pops the current route and optionally returns result
.
@override
void back<T>([T? result]) {
_checkIfCanBack();
_popWithResult<T>(result);
notifyListeners();
}