routes top-level constant Other
Static data about the routes of the ReVoiceMe app. Contains the path, text and icon for each route.
{@category Other}
Implementation
const Map<String, ({String path, String text, IconData icon})> routes =
    <String, ({String path, String text, IconData icon})>{
  "home": (path: "/", text: "Hauptseite", icon: Icons.home),
  "configurator": (
    path: "/configurator",
    text: "Konfiguration",
    icon: Icons.settings
  ),
};