CustomMaterialPage<T> constructor

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

Implementation

const CustomMaterialPage(
  this.transition, {
  required super.child,
  super.maintainState,
  super.fullscreenDialog,
  super.allowSnapshotting,
  super.key,
  super.name,
  super.arguments,
  super.restorationId,
});