// GENERATED CODE - DO NOT MODIFY BY HAND
part of '../../../../presentation/screens/provide_location/provide_location_route.dart';
// **************************************************************************
// GoRouterGenerator
// **************************************************************************
List<RouteBase> get $appRoutes => [$provideLocationRoute];
RouteBase get $provideLocationRoute => GoRouteData.$route(
path: '/concierge/provide-location',
factory: $ProvideLocationRoute._fromState,
);
mixin $ProvideLocationRoute on GoRouteData {
static ProvideLocationRoute _fromState(GoRouterState state) =>
ProvideLocationRoute();
@override
String get location => GoRouteData.$location('/concierge/provide-location');
@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);
}