MaterialPageArgument constructor

const MaterialPageArgument({
  1. required Widget child,
  2. required bool maintainState,
  3. required bool fullscreenDialog,
  4. LocalKey? key,
  5. String? name,
  6. Object? arguments,
})

Implementation

const MaterialPageArgument({
  required this.child,
  required this.maintainState,
  required this.fullscreenDialog,
  this.key,
  this.name,
  this.arguments,
});