IconConfiguration constructor

IconConfiguration({
  1. double iconSize = 24,
  2. VisualDensity? visualDensity,
  3. EdgeInsetsGeometry padding = const EdgeInsets.all(8.0),
  4. AlignmentGeometry alignment = Alignment.center,
  5. double? splashRadius,
  6. Color? color,
  7. Color? focusColor,
  8. Color? hoverColor,
  9. Color? highlightColor,
  10. Color? splashColor,
  11. Color? disabledColor,
  12. String? tooltip,
  13. bool enableFeedback = true,
  14. BoxConstraints? constraints,
  15. required Widget? icon,
})

Implementation

IconConfiguration({
  this.iconSize = 24,
  this.visualDensity,
  this.padding = const EdgeInsets.all(8.0),
  this.alignment = Alignment.center,
  this.splashRadius,
  this.color,
  this.focusColor,
  this.hoverColor,
  this.highlightColor,
  this.splashColor,
  this.disabledColor,
  this.tooltip,
  this.enableFeedback = true,
  this.constraints,
  required this.icon,
});