MaterialIconButtonData constructor

MaterialIconButtonData({
  1. Key? widgetKey,
  2. Widget? icon,
  3. void onPressed()?,
  4. EdgeInsets? padding,
  5. Color? color,
  6. Color? disabledColor,
  7. AlignmentGeometry? alignment,
  8. Color? highlightColor,
  9. double? iconSize = 24.0,
  10. Color? splashColor,
  11. String? tooltip,
  12. Color? focusColor,
  13. Color? hoverColor,
  14. FocusNode? focusNode,
  15. bool? autofocus,
  16. bool? enableFeedback,
  17. VisualDensity? visualDensity,
  18. BoxConstraints? constraints,
  19. double? splashRadius,
  20. MouseCursor? mouseCursor,
  21. bool? isSelected,
  22. Widget? selectedIcon,
  23. ButtonStyle? style,
})

Implementation

MaterialIconButtonData({
  super.widgetKey,
  super.icon,
  super.onPressed,
  super.padding,
  super.color,
  super.disabledColor,
  this.alignment,
  this.highlightColor,
  this.iconSize = 24.0,
  this.splashColor,
  this.tooltip,
  this.focusColor,
  this.hoverColor,
  this.focusNode,
  this.autofocus,
  this.enableFeedback,
  this.visualDensity,
  this.constraints,
  this.splashRadius,
  this.mouseCursor,
  this.isSelected,
  this.selectedIcon,
  this.style,
});