popUntilNamed method

void popUntilNamed(
  1. String routeName
)

Implementation

void popUntilNamed(String routeName) {
  Navigator.of(this).popUntil(ModalRoute.withName(routeName));
}