// GENERATED CODE - DO NOT MODIFY BY HAND
part of '../../../../presentation/screens/profile/profile_route.dart';
// **************************************************************************
// GoRouterGenerator
// **************************************************************************
List<RouteBase> get $appRoutes => [$profileRoute];
RouteBase get $profileRoute =>
GoRouteData.$route(path: '/profile', factory: $ProfileRoute._fromState);
mixin $ProfileRoute on GoRouteData {
static ProfileRoute _fromState(GoRouterState state) => ProfileRoute();
@override
String get location => GoRouteData.$location('/profile');
@override
void go(BuildContext context) => context.go(location);
@override
Future<T?> push<T>(BuildContext context) => context.push<T>(location);
@override
void pushReplacement(BuildContext context) =>
context.pushReplacement(location);
@override
void replace(BuildContext context) => context.replace(location);
}