generateRoute function

String generateRoute(
  1. String c
)

Implementation

String generateRoute(String c) {
  /// generated
  switch (c) {
    case 'home':
      return 'return_value';

    case 'hello 6':
      return 'hello world';
    case 'hello 8':
      return 'hello world';
    case 'hello 10':
      return 'hello world';
    case 'hello 12':
      return 'hello world';
    default:
      return 'def_return';
  }
}