CustomButtonWhite constructor
- Key? key,
- Color btnclr = Colors.white,
- Color? borderColor,
- required String btnText,
- double btnWidth = double.infinity,
- VoidCallback? onTap,
- double fontSize = 15,
- 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,
});