HMIconButton constructor

const HMIconButton({
  1. Key? key,
  2. required Widget icon,
  3. required void onPressed(),
  4. Color? fillColor,
  5. Color? iconColor,
  6. HMRadius? radius,
  7. HMButtonVariant? buttonVariant,
  8. bool disabled = false,
  9. bool hidden = false,
  10. HMIconButtonSize? size,
})

Implementation

const HMIconButton(
    {super.key,
    required this.icon,
    required this.onPressed,
    this.fillColor,
    this.iconColor,
    this.radius,
    this.buttonVariant,
    this.disabled = false,
    this.hidden = false,
    this.size});