MediumFillButton constructor

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

Implementation

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