CustomButtonWhite constructor

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

Implementation

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