FxIconButton constructor

FxIconButton({
  1. Key? key,
  2. required Widget icon,
  3. required VoidCallback? onPressed,
  4. String? label,
  5. String? tooltip,
  6. Color? color,
  7. double size = 0,
})

Implementation

FxIconButton({
  super.key,
  required this.icon,
  required this.onPressed,
  this.label,
  this.tooltip,
  this.color,
  this.size = 0,
});