popUntilHome function

void popUntilHome(
  1. BuildContext context
)

More readable than Navigator function spelled out Runs pop until '/' route

Implementation

void popUntilHome(BuildContext context) {
  return Navigator.of(context).popUntil(ModalRoute.withName('/'));
}