backUntil static method

void backUntil(
  1. String routeName
)

Go back until a route

Implementation

static void backUntil(String routeName) {
  navigator?.popUntil(ModalRoute.withName(routeName));
}