CustomMaterialPage<T> constructor
const
CustomMaterialPage<T> ({})
Implementation
const CustomMaterialPage({
required this.eventProps,
required Widget child,
bool maintainState = true,
bool fullscreenDialog = false,
LocalKey? key,
String? name,
Object? arguments,
String? restorationId,
}) : super(
child: child,
name: name,
fullscreenDialog: fullscreenDialog,
arguments: arguments,
restorationId: restorationId,
maintainState: maintainState,
key: key,
);