appRouterTemplate top-level constant

String const appRouterTemplate

Implementation

const String appRouterTemplate = '''
// Define your app routes here.

class AppRouter {
  static const String home = '/';
  static const String login = '/login';
  // Add more routes as needed.
}
''';