CustomMaterialPage<T> constructor

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

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,
      );