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,
  LocalKey? key,
  String? name,
  Object? arguments,
  String? restorationId,
}) : super(
          key: key,
          name: name,
          arguments: arguments,
          restorationId: restorationId);