MaterialExtendedPage<T> constructor

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

Creates a material page.

Implementation

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