CupertinoRoute<T> constructor

const CupertinoRoute<T>({
  1. bool? initial,
  2. bool? fullscreenDialog,
  3. bool? maintainState,
  4. String? path,
  5. String? title,
  6. String? name,
  7. required Type page,
  8. List<Type>? guards,
  9. List<StackedRoute>? children,
})

Implementation

const CupertinoRoute(
    {bool? initial,
    bool? fullscreenDialog,
    bool? maintainState,
    String? path,
    this.title,
    String? name,
    required Type page,
    List<Type>? guards,
    List<StackedRoute>? children})
    : super(
          initial: initial,
          fullscreenDialog: fullscreenDialog,
          maintainState: maintainState,
          path: path,
          name: name,
          page: page,
          guards: guards,
          children: children);