MaterialDialogActionData constructor

MaterialDialogActionData({
  1. Key? widgetKey,
  2. Widget? child,
  3. void onPressed()?,
  4. VoidCallback? onLongPress,
  5. Clip? clipBehavior,
  6. FocusNode? focusNode,
  7. ButtonStyle? style,
  8. bool? autofocus,
  9. Widget? icon,
  10. ValueChanged<bool>? onHover,
  11. ValueChanged<bool>? onFocusChange,
  12. MaterialStatesController? statesController,
  13. bool? isSemanticButton,
})

Implementation

MaterialDialogActionData({
  super.widgetKey,
  super.child,
  super.onPressed,
  super.onLongPress,
  super.clipBehavior,
  this.focusNode,
  this.style,
  this.autofocus,
  this.icon,
  this.onHover,
  this.onFocusChange,
  this.statesController,
  this.isSemanticButton,
});