routerConfigTemplate top-level constant

String const routerConfigTemplate

routerConfigTemplate

Any router configuration or constants

Implementation

const String routerConfigTemplate =
    """/// Any router configuration or constants\n
/// route config name and path

const String rootRouteName = "root";
const String rootRoutePath = "/";
const String loginRouteName = "login";
const String loginRoutePath = "/login";
const String registerRouteName = "register";
const String registerRoutePath = "/register";
const String resetRouteName = "reset";
const String resetRoutePath = "/reset";
const String adminRouteName = "admin";
const String adminRoutePath = "/admin";
const String dashboardRouteName = "dashboard";
const String dashboardRoutePath = "dashboard";
const String profileRouteName = "profile";
const String profileRoutePath = "profile";
""";