SoftUiIconButton constructor

const SoftUiIconButton({
  1. required IconData icon,
  2. bool isFilled = false,
  3. Color? fgColor,
  4. Color? bgColor,
  5. double? size,
  6. double? width,
  7. double? height,
  8. BorderRadiusGeometry? borderRadius,
  9. void onPressed()?,
  10. Key? key,
})

Implementation

const SoftUiIconButton({
  required this.icon,
  this.isFilled = false,
  this.fgColor,
  this.bgColor,
  this.size,
  this.width,
  this.height,
  this.borderRadius,
  this.onPressed,
  super.key,
});