backUntil method
Implementation
@override
void backUntil(bool Function(FlowerPage) predicate) {
while (_activePages.length <= 1 && !predicate(_activePages.last.route!)) {
_popWithResult();
}
notifyListeners();
}
@override
void backUntil(bool Function(FlowerPage) predicate) {
while (_activePages.length <= 1 && !predicate(_activePages.last.route!)) {
_popWithResult();
}
notifyListeners();
}