CupertinoSheetPage<T> constructor

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

Creates a material page.

Implementation

const CupertinoSheetPage({
  required this.child,
  this.maintainState = true,
  super.key,
  super.name,
  super.arguments,
});