AtomIconButton constructor

const AtomIconButton({
  1. Key? key,
  2. required IconData icon,
  3. VoidCallback? onPressed,
  4. double? size,
  5. EdgeInsetsGeometry? padding,
  6. Color? iconColor,
  7. double spacing = 0,
  8. BoxConstraints? constraints,
  9. VisualDensity? visualDensity,
})

Implementation

const AtomIconButton({
  super.key,
  required this.icon,
  this.onPressed,
  this.size,
  this.padding,
  this.iconColor,
  this.spacing = 0,
  this.constraints,
  this.visualDensity,
});