SelectIconButton constructor

const SelectIconButton({
  1. required IconData icon,
  2. String? text,
  3. Color? iconColor = FUIColors.white,
  4. Color? textColor = FUIColors.white,
  5. Color? backgroundColor = FUIColors.red500,
  6. void onTap()?,
  7. Key? key,
})

Implementation

const SelectIconButton({
  required this.icon,
		this.text,
		this.iconColor = FUIColors.white,
  this.textColor = FUIColors.white,
  this.backgroundColor = FUIColors.red500,
  this.onTap,
  super.key
	});