MaterialWithModalsPageRoute<T> constructor
MaterialWithModalsPageRoute<T> ({
- required WidgetBuilder builder,
- RouteSettings? settings,
- bool maintainState = true,
- bool fullscreenDialog = false,
Construct a MaterialPageRoute whose contents are defined by builder
.
The values of builder
, maintainState
, and fullScreenDialog
must not
be null.
Implementation
MaterialWithModalsPageRoute({
required super.builder,
super.settings,
super.maintainState,
super.fullscreenDialog,
});