MediumOutlineButton constructor

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

Implementation

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