ModalDialogPage<T> constructor

const ModalDialogPage<T>({
  1. required WidgetBuilder builder,
  2. Offset? anchorPoint,
  3. Color? barrierColor = Colors.transparent,
  4. bool barrierDismissible = true,
  5. String? barrierLabel,
  6. bool useSafeArea = true,
  7. CapturedThemes? themes,
  8. LocalKey? key,
  9. String? name,
  10. Object? arguments,
  11. String? restorationId,
})

Implementation

const ModalDialogPage({
  required this.builder,
  this.anchorPoint,
  this.barrierColor = Colors.transparent,
  this.barrierDismissible = true,
  this.barrierLabel,
  this.useSafeArea = true,
  this.themes,
  super.key,
  super.name,
  super.arguments,
  super.restorationId,
});