pushAndRemoveUntilNamed method

void pushAndRemoveUntilNamed(
  1. String routeName
)

Implementation

void pushAndRemoveUntilNamed(String routeName) {
  Navigator.of(this).pushNamedAndRemoveUntil(
    routeName,
    (route) => false,
  );
}