popUntilRoute method

void popUntilRoute(
  1. String routeName
)

Pop until a specific route name

Implementation

void popUntilRoute(String routeName) {
  Navigator.popUntil(this, ModalRoute.withName(routeName));
}