pushAndClearNavigator method

void pushAndClearNavigator(
  1. Widget screen
)

Implementation

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