CupertinoRoute<T> constructor

const CupertinoRoute<T>({
  1. bool initial = false,
  2. bool fullscreenDialog = false,
  3. bool maintainState = true,
  4. String? path,
  5. String? title,
  6. String? name,
  7. bool fullMatch = false,
  8. required Type page,
  9. bool usesPathAsKey = false,
  10. List<Type>? guards,
  11. List<StackedRoute>? children,
  12. Map<String, dynamic> meta = const {},
  13. 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,
      );