FillIconButton constructor

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

Implementation

const FillIconButton({
		required this.text,
  this.backgroundColor,
  this.textColor = FUIColors.black500,
  this.icon,
  this.onTap,
  super.key
	});