UIProIconButton constructor

const UIProIconButton({
  1. Key? key,
  2. required IconData icon,
  3. VoidCallback? onPressed,
  4. double? size,
  5. Color? color,
  6. Color? backgroundColor,
  7. bool isLoading = false,
  8. double? splashRadius,
  9. Color? splashColor,
  10. String? tooltip,
})

Creates a themed icon button.

Implementation

const UIProIconButton({
  super.key,
  required this.icon,
  this.onPressed,
  this.size,
  this.color,
  this.backgroundColor,
  this.isLoading = false,
  this.splashRadius,
  this.splashColor,
  this.tooltip,
});