CupertinoRoute<T> constructor
const
CupertinoRoute<T> ({
- bool initial = false,
- bool fullscreenDialog = false,
- bool maintainState = true,
- String? path,
- String? title,
- String? name,
- bool fullMatch = false,
- required Type page,
- bool usesPathAsKey = false,
- List<
Type> ? guards, - List<
StackedRoute> ? children, - Map<
String, dynamic> meta = const {}, - bool? deferredLoading,
Implementation
const CupertinoRoute({
bool initial = false,
bool fullscreenDialog = false,
bool maintainState = true,
String? path,
this.title,
String? name,
bool fullMatch = false,
required Type page,
bool usesPathAsKey = false,
List<Type>? guards,
List<StackedRoute>? children,
Map<String, dynamic> meta = const {},
bool? deferredLoading,
}) : super(
initial: initial,
fullscreenDialog: fullscreenDialog,
maintainState: maintainState,
path: path,
name: name,
usesPathAsKey: usesPathAsKey,
fullMatch: fullMatch,
page: page,
guards: guards,
children: children,
meta: meta,
deferredLoading: deferredLoading,
);