CupertinoExtendedPage<T> constructor

const CupertinoExtendedPage<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,
  8. String? restorationId,
})

Creates a cupertino page.

Implementation

const CupertinoExtendedPage({
  required this.child,
  this.maintainState = true,
  this.title,
  this.fullscreenDialog = false,
  super.key,
  super.name,
  super.arguments,
  super.restorationId,
});