CupertinoPage<T> constructor

const CupertinoPage<T>({
  1. required Widget child,
  2. bool maintainState = true,
  3. String? title,
  4. bool fullscreenDialog = false,
  5. LocalKey? key,
  6. String? name,
  7. Object? arguments,
})

Creates a cupertino page.

Implementation

const CupertinoPage({
  required this.child,
  this.maintainState = true,
  this.title,
  this.fullscreenDialog = false,
  LocalKey? key,
  String? name,
  Object? arguments,
}) : assert(child != null),
     assert(maintainState != null),
     assert(fullscreenDialog != null),
     super(key: key, name: name, arguments: arguments);