property_page_router.gr.dart 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. // **************************************************************************
  3. // AutoRouterGenerator
  4. // **************************************************************************
  5. // ignore_for_file: type=lint
  6. // coverage:ignore-file
  7. part of 'property_page_router.dart';
  8. abstract class _$PropertyPageRouter extends RootStackRouter {
  9. // ignore: unused_element
  10. _$PropertyPageRouter({super.navigatorKey});
  11. @override
  12. final Map<String, PageFactory> pagesMap = {
  13. PropertyIoanPageRoute.name: (routeData) {
  14. return AutoRoutePage<dynamic>(
  15. routeData: routeData,
  16. child: const PropertyIoanPage(),
  17. );
  18. },
  19. PropertyNewsPageRoute.name: (routeData) {
  20. return AutoRoutePage<dynamic>(
  21. routeData: routeData,
  22. child: const PropertyNewsPage(),
  23. );
  24. },
  25. PropertyPageRoute.name: (routeData) {
  26. return AutoRoutePage<dynamic>(
  27. routeData: routeData,
  28. child: const PropertyPage(),
  29. );
  30. },
  31. PropertyRentPageRoute.name: (routeData) {
  32. return AutoRoutePage<dynamic>(
  33. routeData: routeData,
  34. child: const PropertyRentPage(),
  35. );
  36. },
  37. PropertySalePageRoute.name: (routeData) {
  38. return AutoRoutePage<dynamic>(
  39. routeData: routeData,
  40. child: const PropertySalePage(),
  41. );
  42. },
  43. };
  44. }
  45. /// generated route for
  46. /// [PropertyIoanPage]
  47. class PropertyIoanPageRoute extends PageRouteInfo<void> {
  48. const PropertyIoanPageRoute({List<PageRouteInfo>? children})
  49. : super(
  50. PropertyIoanPageRoute.name,
  51. initialChildren: children,
  52. );
  53. static const String name = 'PropertyIoanPageRoute';
  54. static const PageInfo<void> page = PageInfo<void>(name);
  55. }
  56. /// generated route for
  57. /// [PropertyNewsPage]
  58. class PropertyNewsPageRoute extends PageRouteInfo<void> {
  59. const PropertyNewsPageRoute({List<PageRouteInfo>? children})
  60. : super(
  61. PropertyNewsPageRoute.name,
  62. initialChildren: children,
  63. );
  64. static const String name = 'PropertyNewsPageRoute';
  65. static const PageInfo<void> page = PageInfo<void>(name);
  66. }
  67. /// generated route for
  68. /// [PropertyPage]
  69. class PropertyPageRoute extends PageRouteInfo<void> {
  70. const PropertyPageRoute({List<PageRouteInfo>? children})
  71. : super(
  72. PropertyPageRoute.name,
  73. initialChildren: children,
  74. );
  75. static const String name = 'PropertyPageRoute';
  76. static const PageInfo<void> page = PageInfo<void>(name);
  77. }
  78. /// generated route for
  79. /// [PropertyRentPage]
  80. class PropertyRentPageRoute extends PageRouteInfo<void> {
  81. const PropertyRentPageRoute({List<PageRouteInfo>? children})
  82. : super(
  83. PropertyRentPageRoute.name,
  84. initialChildren: children,
  85. );
  86. static const String name = 'PropertyRentPageRoute';
  87. static const PageInfo<void> page = PageInfo<void>(name);
  88. }
  89. /// generated route for
  90. /// [PropertySalePage]
  91. class PropertySalePageRoute extends PageRouteInfo<void> {
  92. const PropertySalePageRoute({List<PageRouteInfo>? children})
  93. : super(
  94. PropertySalePageRoute.name,
  95. initialChildren: children,
  96. );
  97. static const String name = 'PropertySalePageRoute';
  98. static const PageInfo<void> page = PageInfo<void>(name);
  99. }