How to remove all routes from the Navigator in Flutter

Saad Bash

Helpful for designing functionality of a Logout button

Navigator.of(context).pushNamedAndRemoveUntil(
    '/desiredNamedRoute',
    (Route<dynamic> route) => false,
  );