MyButton constructor
MyButton({
- required String label,
- required VoidCallback onPressed,
- Color color = Colors.green,
- TextStyle? textStyle,
Implementation
MyButton({
required this.label,
required this.onPressed,
this.color = Colors.green,
this.textStyle,
});