CustomButtonWhite constructor

const CustomButtonWhite({
  1. Key? key,
  2. Color btnclr = Colors.white,
  3. Color? borderColor,
  4. required String btnText,
  5. double btnWidth = double.infinity,
  6. VoidCallback? onTap,
  7. double fontSize = 15,
  8. FontWeight? fontWeight,
})

Implementation

const CustomButtonWhite({
  super.key,
  this.btnclr=Colors.white,
  this.borderColor,
  required this.btnText,
  this.btnWidth = double.infinity,
  this.onTap,
  this.fontSize = 15,
  this.fontWeight,
});