MaterialAlertDialogData constructor

MaterialAlertDialogData(
  1. {Key? widgetKey,
  2. List<Widget>? actions,
  3. Widget? content,
  4. Widget? title,
  5. TextStyle? contentTextStyle,
  6. Color? backgroundColor,
  7. double? elevation,
  8. ShapeBorder? shape,
  9. EdgeInsetsGeometry? contentPadding,
  10. String? semanticLabel,
  11. EdgeInsetsGeometry? titlePadding,
  12. TextStyle? titleTextStyle,
  13. bool? scrollable,
  14. VerticalDirection? actionsOverflowDirection,
  15. EdgeInsetsGeometry? actionsPadding,
  16. EdgeInsetsGeometry? buttonPadding,
  17. double? actionsOverflowButtonSpacing,
  18. Clip? clipBehavior,
  19. EdgeInsets? insetPadding,
  20. MainAxisAlignment? actionsAlignment,
  21. AlignmentGeometry? alignment,
  22. OverflowBarAlignment? actionsOverflowAlignment,
  23. Widget? icon,
  24. Color? iconColor,
  25. EdgeInsetsGeometry? iconPadding,
  26. Color? shadowColor,
  27. Color? surfaceTintColor}
)

Implementation

MaterialAlertDialogData({
  super.widgetKey,
  super.actions,
  super.content,
  super.title,
  this.contentTextStyle,
  this.backgroundColor,
  this.elevation,
  this.shape,
  this.contentPadding,
  this.semanticLabel,
  this.titlePadding,
  this.titleTextStyle,
  this.scrollable,
  this.actionsOverflowDirection,
  this.actionsPadding,
  this.buttonPadding,
  this.actionsOverflowButtonSpacing,
  this.clipBehavior,
  this.insetPadding,
  this.actionsAlignment,
  this.alignment,
  this.actionsOverflowAlignment,
  this.icon,
  this.iconColor,
  this.iconPadding,
  this.shadowColor,
  this.surfaceTintColor,
});