popUntil method

void popUntil(
  1. String screenName, {
  2. bool rootNavigator = false,
})

perform replash with routeName

Implementation

void popUntil(
  String screenName, {
  bool rootNavigator = false,
}) =>
    Navigator.of(
      this,
      rootNavigator: rootNavigator,
    ).popUntil(ModalRoute.withName(screenName));