mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-09 09:31:13 +00:00
chore(router): Rebuild the router with latest AutoRoute
This commit is contained in:
parent
13af7e5e1d
commit
5069563d45
|
@ -15,6 +15,24 @@ abstract class _$RootRouter extends RootStackRouter {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
final Map<String, PageFactory> pagesMap = {
|
final Map<String, PageFactory> pagesMap = {
|
||||||
|
BackupDetailsRoute.name: (routeData) {
|
||||||
|
return AutoRoutePage<dynamic>(
|
||||||
|
routeData: routeData,
|
||||||
|
child: const BackupDetailsPage(),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
DevicesRoute.name: (routeData) {
|
||||||
|
return AutoRoutePage<dynamic>(
|
||||||
|
routeData: routeData,
|
||||||
|
child: const DevicesScreen(),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
DnsDetailsRoute.name: (routeData) {
|
||||||
|
return AutoRoutePage<dynamic>(
|
||||||
|
routeData: routeData,
|
||||||
|
child: const DnsDetailsPage(),
|
||||||
|
);
|
||||||
|
},
|
||||||
AppSettingsRoute.name: (routeData) {
|
AppSettingsRoute.name: (routeData) {
|
||||||
return AutoRoutePage<dynamic>(
|
return AutoRoutePage<dynamic>(
|
||||||
routeData: routeData,
|
routeData: routeData,
|
||||||
|
@ -27,10 +45,10 @@ abstract class _$RootRouter extends RootStackRouter {
|
||||||
child: const DeveloperSettingsPage(),
|
child: const DeveloperSettingsPage(),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
ConsoleRoute.name: (routeData) {
|
AboutApplicationRoute.name: (routeData) {
|
||||||
return AutoRoutePage<dynamic>(
|
return AutoRoutePage<dynamic>(
|
||||||
routeData: routeData,
|
routeData: routeData,
|
||||||
child: const ConsolePage(),
|
child: const AboutApplicationPage(),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
MoreRoute.name: (routeData) {
|
MoreRoute.name: (routeData) {
|
||||||
|
@ -39,10 +57,10 @@ abstract class _$RootRouter extends RootStackRouter {
|
||||||
child: const MorePage(),
|
child: const MorePage(),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
AboutApplicationRoute.name: (routeData) {
|
ConsoleRoute.name: (routeData) {
|
||||||
return AutoRoutePage<dynamic>(
|
return AutoRoutePage<dynamic>(
|
||||||
routeData: routeData,
|
routeData: routeData,
|
||||||
child: const AboutApplicationPage(),
|
child: const ConsolePage(),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
OnboardingRoute.name: (routeData) {
|
OnboardingRoute.name: (routeData) {
|
||||||
|
@ -57,84 +75,16 @@ abstract class _$RootRouter extends RootStackRouter {
|
||||||
child: const ProvidersPage(),
|
child: const ProvidersPage(),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
ServerDetailsRoute.name: (routeData) {
|
|
||||||
return AutoRoutePage<dynamic>(
|
|
||||||
routeData: routeData,
|
|
||||||
child: const ServerDetailsScreen(),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
ServiceRoute.name: (routeData) {
|
|
||||||
final args = routeData.argsAs<ServiceRouteArgs>();
|
|
||||||
return AutoRoutePage<dynamic>(
|
|
||||||
routeData: routeData,
|
|
||||||
child: ServicePage(
|
|
||||||
serviceId: args.serviceId,
|
|
||||||
key: args.key,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
ServicesRoute.name: (routeData) {
|
|
||||||
return AutoRoutePage<dynamic>(
|
|
||||||
routeData: routeData,
|
|
||||||
child: const ServicesPage(),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
UsersRoute.name: (routeData) {
|
|
||||||
return AutoRoutePage<dynamic>(
|
|
||||||
routeData: routeData,
|
|
||||||
child: const UsersPage(),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
NewUserRoute.name: (routeData) {
|
|
||||||
return AutoRoutePage<dynamic>(
|
|
||||||
routeData: routeData,
|
|
||||||
child: const NewUserPage(),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
UserDetailsRoute.name: (routeData) {
|
|
||||||
final args = routeData.argsAs<UserDetailsRouteArgs>();
|
|
||||||
return AutoRoutePage<dynamic>(
|
|
||||||
routeData: routeData,
|
|
||||||
child: UserDetailsPage(
|
|
||||||
login: args.login,
|
|
||||||
key: args.key,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
BackupDetailsRoute.name: (routeData) {
|
|
||||||
return AutoRoutePage<dynamic>(
|
|
||||||
routeData: routeData,
|
|
||||||
child: const BackupDetailsPage(),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
DnsDetailsRoute.name: (routeData) {
|
|
||||||
return AutoRoutePage<dynamic>(
|
|
||||||
routeData: routeData,
|
|
||||||
child: const DnsDetailsPage(),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
RecoveryRoute.name: (routeData) {
|
|
||||||
return AutoRoutePage<dynamic>(
|
|
||||||
routeData: routeData,
|
|
||||||
child: const RecoveryRouting(),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
InitializingRoute.name: (routeData) {
|
|
||||||
return AutoRoutePage<dynamic>(
|
|
||||||
routeData: routeData,
|
|
||||||
child: const InitializingPage(),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
RecoveryKeyRoute.name: (routeData) {
|
RecoveryKeyRoute.name: (routeData) {
|
||||||
return AutoRoutePage<dynamic>(
|
return AutoRoutePage<dynamic>(
|
||||||
routeData: routeData,
|
routeData: routeData,
|
||||||
child: const RecoveryKeyPage(),
|
child: const RecoveryKeyPage(),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
DevicesRoute.name: (routeData) {
|
ServerDetailsRoute.name: (routeData) {
|
||||||
return AutoRoutePage<dynamic>(
|
return AutoRoutePage<dynamic>(
|
||||||
routeData: routeData,
|
routeData: routeData,
|
||||||
child: const DevicesScreen(),
|
child: const ServerDetailsScreen(),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
ServicesMigrationRoute.name: (routeData) {
|
ServicesMigrationRoute.name: (routeData) {
|
||||||
|
@ -170,6 +120,56 @@ abstract class _$RootRouter extends RootStackRouter {
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
ServiceRoute.name: (routeData) {
|
||||||
|
final args = routeData.argsAs<ServiceRouteArgs>();
|
||||||
|
return AutoRoutePage<dynamic>(
|
||||||
|
routeData: routeData,
|
||||||
|
child: ServicePage(
|
||||||
|
serviceId: args.serviceId,
|
||||||
|
key: args.key,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
ServicesRoute.name: (routeData) {
|
||||||
|
return AutoRoutePage<dynamic>(
|
||||||
|
routeData: routeData,
|
||||||
|
child: const ServicesPage(),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
InitializingRoute.name: (routeData) {
|
||||||
|
return AutoRoutePage<dynamic>(
|
||||||
|
routeData: routeData,
|
||||||
|
child: const InitializingPage(),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
RecoveryRoute.name: (routeData) {
|
||||||
|
return AutoRoutePage<dynamic>(
|
||||||
|
routeData: routeData,
|
||||||
|
child: const RecoveryRouting(),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
UsersRoute.name: (routeData) {
|
||||||
|
return AutoRoutePage<dynamic>(
|
||||||
|
routeData: routeData,
|
||||||
|
child: const UsersPage(),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
NewUserRoute.name: (routeData) {
|
||||||
|
return AutoRoutePage<dynamic>(
|
||||||
|
routeData: routeData,
|
||||||
|
child: const NewUserPage(),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
UserDetailsRoute.name: (routeData) {
|
||||||
|
final args = routeData.argsAs<UserDetailsRouteArgs>();
|
||||||
|
return AutoRoutePage<dynamic>(
|
||||||
|
routeData: routeData,
|
||||||
|
child: UserDetailsPage(
|
||||||
|
login: args.login,
|
||||||
|
key: args.key,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
RootRoute.name: (routeData) {
|
RootRoute.name: (routeData) {
|
||||||
return AutoRoutePage<dynamic>(
|
return AutoRoutePage<dynamic>(
|
||||||
routeData: routeData,
|
routeData: routeData,
|
||||||
|
@ -179,6 +179,48 @@ abstract class _$RootRouter extends RootStackRouter {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// generated route for
|
||||||
|
/// [BackupDetailsPage]
|
||||||
|
class BackupDetailsRoute extends PageRouteInfo<void> {
|
||||||
|
const BackupDetailsRoute({List<PageRouteInfo>? children})
|
||||||
|
: super(
|
||||||
|
BackupDetailsRoute.name,
|
||||||
|
initialChildren: children,
|
||||||
|
);
|
||||||
|
|
||||||
|
static const String name = 'BackupDetailsRoute';
|
||||||
|
|
||||||
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// generated route for
|
||||||
|
/// [DevicesScreen]
|
||||||
|
class DevicesRoute extends PageRouteInfo<void> {
|
||||||
|
const DevicesRoute({List<PageRouteInfo>? children})
|
||||||
|
: super(
|
||||||
|
DevicesRoute.name,
|
||||||
|
initialChildren: children,
|
||||||
|
);
|
||||||
|
|
||||||
|
static const String name = 'DevicesRoute';
|
||||||
|
|
||||||
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// generated route for
|
||||||
|
/// [DnsDetailsPage]
|
||||||
|
class DnsDetailsRoute extends PageRouteInfo<void> {
|
||||||
|
const DnsDetailsRoute({List<PageRouteInfo>? children})
|
||||||
|
: super(
|
||||||
|
DnsDetailsRoute.name,
|
||||||
|
initialChildren: children,
|
||||||
|
);
|
||||||
|
|
||||||
|
static const String name = 'DnsDetailsRoute';
|
||||||
|
|
||||||
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
|
}
|
||||||
|
|
||||||
/// generated route for
|
/// generated route for
|
||||||
/// [AppSettingsPage]
|
/// [AppSettingsPage]
|
||||||
class AppSettingsRoute extends PageRouteInfo<void> {
|
class AppSettingsRoute extends PageRouteInfo<void> {
|
||||||
|
@ -208,15 +250,15 @@ class DeveloperSettingsRoute extends PageRouteInfo<void> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// generated route for
|
/// generated route for
|
||||||
/// [ConsolePage]
|
/// [AboutApplicationPage]
|
||||||
class ConsoleRoute extends PageRouteInfo<void> {
|
class AboutApplicationRoute extends PageRouteInfo<void> {
|
||||||
const ConsoleRoute({List<PageRouteInfo>? children})
|
const AboutApplicationRoute({List<PageRouteInfo>? children})
|
||||||
: super(
|
: super(
|
||||||
ConsoleRoute.name,
|
AboutApplicationRoute.name,
|
||||||
initialChildren: children,
|
initialChildren: children,
|
||||||
);
|
);
|
||||||
|
|
||||||
static const String name = 'ConsoleRoute';
|
static const String name = 'AboutApplicationRoute';
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
}
|
}
|
||||||
|
@ -236,15 +278,15 @@ class MoreRoute extends PageRouteInfo<void> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// generated route for
|
/// generated route for
|
||||||
/// [AboutApplicationPage]
|
/// [ConsolePage]
|
||||||
class AboutApplicationRoute extends PageRouteInfo<void> {
|
class ConsoleRoute extends PageRouteInfo<void> {
|
||||||
const AboutApplicationRoute({List<PageRouteInfo>? children})
|
const ConsoleRoute({List<PageRouteInfo>? children})
|
||||||
: super(
|
: super(
|
||||||
AboutApplicationRoute.name,
|
ConsoleRoute.name,
|
||||||
initialChildren: children,
|
initialChildren: children,
|
||||||
);
|
);
|
||||||
|
|
||||||
static const String name = 'AboutApplicationRoute';
|
static const String name = 'ConsoleRoute';
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
}
|
}
|
||||||
|
@ -277,194 +319,6 @@ class ProvidersRoute extends PageRouteInfo<void> {
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// generated route for
|
|
||||||
/// [ServerDetailsScreen]
|
|
||||||
class ServerDetailsRoute extends PageRouteInfo<void> {
|
|
||||||
const ServerDetailsRoute({List<PageRouteInfo>? children})
|
|
||||||
: super(
|
|
||||||
ServerDetailsRoute.name,
|
|
||||||
initialChildren: children,
|
|
||||||
);
|
|
||||||
|
|
||||||
static const String name = 'ServerDetailsRoute';
|
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// generated route for
|
|
||||||
/// [ServicePage]
|
|
||||||
class ServiceRoute extends PageRouteInfo<ServiceRouteArgs> {
|
|
||||||
ServiceRoute({
|
|
||||||
required String serviceId,
|
|
||||||
Key? key,
|
|
||||||
List<PageRouteInfo>? children,
|
|
||||||
}) : super(
|
|
||||||
ServiceRoute.name,
|
|
||||||
args: ServiceRouteArgs(
|
|
||||||
serviceId: serviceId,
|
|
||||||
key: key,
|
|
||||||
),
|
|
||||||
initialChildren: children,
|
|
||||||
);
|
|
||||||
|
|
||||||
static const String name = 'ServiceRoute';
|
|
||||||
|
|
||||||
static const PageInfo<ServiceRouteArgs> page =
|
|
||||||
PageInfo<ServiceRouteArgs>(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
class ServiceRouteArgs {
|
|
||||||
const ServiceRouteArgs({
|
|
||||||
required this.serviceId,
|
|
||||||
this.key,
|
|
||||||
});
|
|
||||||
|
|
||||||
final String serviceId;
|
|
||||||
|
|
||||||
final Key? key;
|
|
||||||
|
|
||||||
@override
|
|
||||||
String toString() {
|
|
||||||
return 'ServiceRouteArgs{serviceId: $serviceId, key: $key}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// generated route for
|
|
||||||
/// [ServicesPage]
|
|
||||||
class ServicesRoute extends PageRouteInfo<void> {
|
|
||||||
const ServicesRoute({List<PageRouteInfo>? children})
|
|
||||||
: super(
|
|
||||||
ServicesRoute.name,
|
|
||||||
initialChildren: children,
|
|
||||||
);
|
|
||||||
|
|
||||||
static const String name = 'ServicesRoute';
|
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// generated route for
|
|
||||||
/// [UsersPage]
|
|
||||||
class UsersRoute extends PageRouteInfo<void> {
|
|
||||||
const UsersRoute({List<PageRouteInfo>? children})
|
|
||||||
: super(
|
|
||||||
UsersRoute.name,
|
|
||||||
initialChildren: children,
|
|
||||||
);
|
|
||||||
|
|
||||||
static const String name = 'UsersRoute';
|
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// generated route for
|
|
||||||
/// [NewUserPage]
|
|
||||||
class NewUserRoute extends PageRouteInfo<void> {
|
|
||||||
const NewUserRoute({List<PageRouteInfo>? children})
|
|
||||||
: super(
|
|
||||||
NewUserRoute.name,
|
|
||||||
initialChildren: children,
|
|
||||||
);
|
|
||||||
|
|
||||||
static const String name = 'NewUserRoute';
|
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// generated route for
|
|
||||||
/// [UserDetailsPage]
|
|
||||||
class UserDetailsRoute extends PageRouteInfo<UserDetailsRouteArgs> {
|
|
||||||
UserDetailsRoute({
|
|
||||||
required String login,
|
|
||||||
Key? key,
|
|
||||||
List<PageRouteInfo>? children,
|
|
||||||
}) : super(
|
|
||||||
UserDetailsRoute.name,
|
|
||||||
args: UserDetailsRouteArgs(
|
|
||||||
login: login,
|
|
||||||
key: key,
|
|
||||||
),
|
|
||||||
initialChildren: children,
|
|
||||||
);
|
|
||||||
|
|
||||||
static const String name = 'UserDetailsRoute';
|
|
||||||
|
|
||||||
static const PageInfo<UserDetailsRouteArgs> page =
|
|
||||||
PageInfo<UserDetailsRouteArgs>(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
class UserDetailsRouteArgs {
|
|
||||||
const UserDetailsRouteArgs({
|
|
||||||
required this.login,
|
|
||||||
this.key,
|
|
||||||
});
|
|
||||||
|
|
||||||
final String login;
|
|
||||||
|
|
||||||
final Key? key;
|
|
||||||
|
|
||||||
@override
|
|
||||||
String toString() {
|
|
||||||
return 'UserDetailsRouteArgs{login: $login, key: $key}';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// generated route for
|
|
||||||
/// [BackupDetailsPage]
|
|
||||||
class BackupDetailsRoute extends PageRouteInfo<void> {
|
|
||||||
const BackupDetailsRoute({List<PageRouteInfo>? children})
|
|
||||||
: super(
|
|
||||||
BackupDetailsRoute.name,
|
|
||||||
initialChildren: children,
|
|
||||||
);
|
|
||||||
|
|
||||||
static const String name = 'BackupDetailsRoute';
|
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// generated route for
|
|
||||||
/// [DnsDetailsPage]
|
|
||||||
class DnsDetailsRoute extends PageRouteInfo<void> {
|
|
||||||
const DnsDetailsRoute({List<PageRouteInfo>? children})
|
|
||||||
: super(
|
|
||||||
DnsDetailsRoute.name,
|
|
||||||
initialChildren: children,
|
|
||||||
);
|
|
||||||
|
|
||||||
static const String name = 'DnsDetailsRoute';
|
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// generated route for
|
|
||||||
/// [RecoveryRouting]
|
|
||||||
class RecoveryRoute extends PageRouteInfo<void> {
|
|
||||||
const RecoveryRoute({List<PageRouteInfo>? children})
|
|
||||||
: super(
|
|
||||||
RecoveryRoute.name,
|
|
||||||
initialChildren: children,
|
|
||||||
);
|
|
||||||
|
|
||||||
static const String name = 'RecoveryRoute';
|
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// generated route for
|
|
||||||
/// [InitializingPage]
|
|
||||||
class InitializingRoute extends PageRouteInfo<void> {
|
|
||||||
const InitializingRoute({List<PageRouteInfo>? children})
|
|
||||||
: super(
|
|
||||||
InitializingRoute.name,
|
|
||||||
initialChildren: children,
|
|
||||||
);
|
|
||||||
|
|
||||||
static const String name = 'InitializingRoute';
|
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// generated route for
|
/// generated route for
|
||||||
/// [RecoveryKeyPage]
|
/// [RecoveryKeyPage]
|
||||||
class RecoveryKeyRoute extends PageRouteInfo<void> {
|
class RecoveryKeyRoute extends PageRouteInfo<void> {
|
||||||
|
@ -480,15 +334,15 @@ class RecoveryKeyRoute extends PageRouteInfo<void> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// generated route for
|
/// generated route for
|
||||||
/// [DevicesScreen]
|
/// [ServerDetailsScreen]
|
||||||
class DevicesRoute extends PageRouteInfo<void> {
|
class ServerDetailsRoute extends PageRouteInfo<void> {
|
||||||
const DevicesRoute({List<PageRouteInfo>? children})
|
const ServerDetailsRoute({List<PageRouteInfo>? children})
|
||||||
: super(
|
: super(
|
||||||
DevicesRoute.name,
|
ServerDetailsRoute.name,
|
||||||
initialChildren: children,
|
initialChildren: children,
|
||||||
);
|
);
|
||||||
|
|
||||||
static const String name = 'DevicesRoute';
|
static const String name = 'ServerDetailsRoute';
|
||||||
|
|
||||||
static const PageInfo<void> page = PageInfo<void>(name);
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
}
|
}
|
||||||
|
@ -622,6 +476,152 @@ class ServerStorageRouteArgs {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// generated route for
|
||||||
|
/// [ServicePage]
|
||||||
|
class ServiceRoute extends PageRouteInfo<ServiceRouteArgs> {
|
||||||
|
ServiceRoute({
|
||||||
|
required String serviceId,
|
||||||
|
Key? key,
|
||||||
|
List<PageRouteInfo>? children,
|
||||||
|
}) : super(
|
||||||
|
ServiceRoute.name,
|
||||||
|
args: ServiceRouteArgs(
|
||||||
|
serviceId: serviceId,
|
||||||
|
key: key,
|
||||||
|
),
|
||||||
|
initialChildren: children,
|
||||||
|
);
|
||||||
|
|
||||||
|
static const String name = 'ServiceRoute';
|
||||||
|
|
||||||
|
static const PageInfo<ServiceRouteArgs> page =
|
||||||
|
PageInfo<ServiceRouteArgs>(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
class ServiceRouteArgs {
|
||||||
|
const ServiceRouteArgs({
|
||||||
|
required this.serviceId,
|
||||||
|
this.key,
|
||||||
|
});
|
||||||
|
|
||||||
|
final String serviceId;
|
||||||
|
|
||||||
|
final Key? key;
|
||||||
|
|
||||||
|
@override
|
||||||
|
String toString() {
|
||||||
|
return 'ServiceRouteArgs{serviceId: $serviceId, key: $key}';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// generated route for
|
||||||
|
/// [ServicesPage]
|
||||||
|
class ServicesRoute extends PageRouteInfo<void> {
|
||||||
|
const ServicesRoute({List<PageRouteInfo>? children})
|
||||||
|
: super(
|
||||||
|
ServicesRoute.name,
|
||||||
|
initialChildren: children,
|
||||||
|
);
|
||||||
|
|
||||||
|
static const String name = 'ServicesRoute';
|
||||||
|
|
||||||
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// generated route for
|
||||||
|
/// [InitializingPage]
|
||||||
|
class InitializingRoute extends PageRouteInfo<void> {
|
||||||
|
const InitializingRoute({List<PageRouteInfo>? children})
|
||||||
|
: super(
|
||||||
|
InitializingRoute.name,
|
||||||
|
initialChildren: children,
|
||||||
|
);
|
||||||
|
|
||||||
|
static const String name = 'InitializingRoute';
|
||||||
|
|
||||||
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// generated route for
|
||||||
|
/// [RecoveryRouting]
|
||||||
|
class RecoveryRoute extends PageRouteInfo<void> {
|
||||||
|
const RecoveryRoute({List<PageRouteInfo>? children})
|
||||||
|
: super(
|
||||||
|
RecoveryRoute.name,
|
||||||
|
initialChildren: children,
|
||||||
|
);
|
||||||
|
|
||||||
|
static const String name = 'RecoveryRoute';
|
||||||
|
|
||||||
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// generated route for
|
||||||
|
/// [UsersPage]
|
||||||
|
class UsersRoute extends PageRouteInfo<void> {
|
||||||
|
const UsersRoute({List<PageRouteInfo>? children})
|
||||||
|
: super(
|
||||||
|
UsersRoute.name,
|
||||||
|
initialChildren: children,
|
||||||
|
);
|
||||||
|
|
||||||
|
static const String name = 'UsersRoute';
|
||||||
|
|
||||||
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// generated route for
|
||||||
|
/// [NewUserPage]
|
||||||
|
class NewUserRoute extends PageRouteInfo<void> {
|
||||||
|
const NewUserRoute({List<PageRouteInfo>? children})
|
||||||
|
: super(
|
||||||
|
NewUserRoute.name,
|
||||||
|
initialChildren: children,
|
||||||
|
);
|
||||||
|
|
||||||
|
static const String name = 'NewUserRoute';
|
||||||
|
|
||||||
|
static const PageInfo<void> page = PageInfo<void>(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// generated route for
|
||||||
|
/// [UserDetailsPage]
|
||||||
|
class UserDetailsRoute extends PageRouteInfo<UserDetailsRouteArgs> {
|
||||||
|
UserDetailsRoute({
|
||||||
|
required String login,
|
||||||
|
Key? key,
|
||||||
|
List<PageRouteInfo>? children,
|
||||||
|
}) : super(
|
||||||
|
UserDetailsRoute.name,
|
||||||
|
args: UserDetailsRouteArgs(
|
||||||
|
login: login,
|
||||||
|
key: key,
|
||||||
|
),
|
||||||
|
initialChildren: children,
|
||||||
|
);
|
||||||
|
|
||||||
|
static const String name = 'UserDetailsRoute';
|
||||||
|
|
||||||
|
static const PageInfo<UserDetailsRouteArgs> page =
|
||||||
|
PageInfo<UserDetailsRouteArgs>(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
class UserDetailsRouteArgs {
|
||||||
|
const UserDetailsRouteArgs({
|
||||||
|
required this.login,
|
||||||
|
this.key,
|
||||||
|
});
|
||||||
|
|
||||||
|
final String login;
|
||||||
|
|
||||||
|
final Key? key;
|
||||||
|
|
||||||
|
@override
|
||||||
|
String toString() {
|
||||||
|
return 'UserDetailsRouteArgs{login: $login, key: $key}';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// generated route for
|
/// generated route for
|
||||||
/// [RootPage]
|
/// [RootPage]
|
||||||
class RootRoute extends PageRouteInfo<void> {
|
class RootRoute extends PageRouteInfo<void> {
|
||||||
|
|
Loading…
Reference in a new issue