CustomButton constructor
const
CustomButton({})
Implementation
const CustomButton({
Key? key,
required this.onPressed,
required this.buttonTextValue,
required this.buttonTextFont,
this.isButtonDisabled = false, // Default value is false
}) : super(key: key);