OutlineIconButton constructor

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

Implementation

const OutlineIconButton({
		required this.text,
  this.color = FUIColors.black500,
  this.icon,
  this.onTap,
  super.key
	});