makeFirst static method
Implementation
static void makeFirst(BuildContext context, Widget page) {
Navigator.of(context).popUntil((predicate) => predicate.isFirst);
Navigator.of(context).pushReplacement(
new MaterialPageRoute(builder: (context) => page),
);
}