pushAndClearNavigator method
void
pushAndClearNavigator(
Implementation
void pushAndClearNavigator(Widget screen) {
Navigator.pushAndRemoveUntil(
this,
MaterialPageRoute(
builder: (context) => screen,
),
(route) => false);
}