MaterialDialogFlatActionData constructor

MaterialDialogFlatActionData({
  1. Widget? child,
  2. void onPressed()?,
  3. Key? widgetKey,
  4. VoidCallback? onLongPress,
  5. Clip? clipBehavior,
  6. Color? color,
  7. Brightness? colorBrightness,
  8. Color? disabledColor,
  9. Color? disabledTextColor,
  10. Color? highlightColor,
  11. ValueChanged<bool>? onHighlightChanged,
  12. EdgeInsetsGeometry? padding,
  13. ShapeBorder? shape,
  14. Color? splashColor,
  15. Color? textColor,
  16. ButtonTextTheme? textTheme,
  17. MaterialTapTargetSize? materialTapTargetSize,
  18. Color? focusColor,
  19. Color? hoverColor,
  20. FocusNode? focusNode,
  21. bool? autofocus,
  22. VisualDensity? visualDensity,
  23. MouseCursor? mouseCursor,
  24. double? height,
  25. double? minWidth,
})

Implementation

MaterialDialogFlatActionData({
  super.child,
  super.onPressed,
  super.widgetKey,
  super.onLongPress,
  super.clipBehavior,
  this.color,
  this.colorBrightness,
  this.disabledColor,
  this.disabledTextColor,
  this.highlightColor,
  this.onHighlightChanged,
  this.padding,
  this.shape,
  this.splashColor,
  this.textColor,
  this.textTheme,
  this.materialTapTargetSize,
  this.focusColor,
  this.hoverColor,
  this.focusNode,
  this.autofocus,
  this.visualDensity,
  this.mouseCursor,
  this.height,
  this.minWidth,
});