popUntil method

void popUntil(
  1. String route
)

Calls pop repeatedly until the predicate returns true.

Implementation

void popUntil(String route) {
  navigationKey.currentState!.popUntil(ModalRoute.withName(route));
}