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. List<Type>? guards,
  10. bool usesPathAsKey = false,
  11. List<AutoRoute>? children,
  12. Map<String, dynamic> meta = const {},
})

Implementation

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