FUIIconButton constructor

const FUIIconButton({
  1. Key? key,
  2. required IconData icon,
  3. VoidCallback? onPressed,
  4. String? tooltip,
  5. FUIIconButtonVariant variant = FUIIconButtonVariant.ghost,
  6. bool selected = false,
})

Implementation

const FUIIconButton({
  super.key,
  required this.icon,
  this.onPressed,
  this.tooltip,
  this.variant = FUIIconButtonVariant.ghost,
  this.selected = false,
});