KDLPatients/lib/app/routes/app_router.gr.dart

33 lines
914 B
Dart
Raw Permalink Normal View History

2024-09-25 17:20:07 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
// **************************************************************************
// AutoRouterGenerator
// **************************************************************************
// ignore_for_file: type=lint
// coverage:ignore-file
// ignore_for_file: no_leading_underscores_for_library_prefixes
import 'package:auto_route/auto_route.dart' as _i2;
import 'package:kdl_patients/app/presentation/example/view/example_screen.dart'
as _i1;
/// generated route for
/// [_i1.ExampleScreen]
class ExampleRoute extends _i2.PageRouteInfo<void> {
const ExampleRoute({List<_i2.PageRouteInfo>? children})
: super(
ExampleRoute.name,
initialChildren: children,
);
static const String name = 'ExampleRoute';
static _i2.PageInfo page = _i2.PageInfo(
name,
builder: (data) {
return const _i1.ExampleScreen();
},
);
}