CustomButton constructor
const
CustomButton({
- Key? key,
- required String label,
- required VoidCallback onPressed,
- Color color = Colors.green,
- Color textColor = Colors.white,
Implementation
const CustomButton({
super.key,
required this.label,
required this.onPressed,
this.color = Colors.green,
this.textColor = Colors.white,
});