MaterialIgnorePage<T> constructor

const MaterialIgnorePage<T>({
  1. required RouteQueueEntry entry,
  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 MaterialIgnorePage({
  required this.entry,
  required super.child,
  super.maintainState,
  super.fullscreenDialog,
  super.allowSnapshotting,
  super.key,
  super.name,
  super.arguments,
  super.restorationId,
});