MyButton constructor

MyButton({
  1. required String label,
  2. required VoidCallback onPressed,
  3. Color color = Colors.green,
  4. TextStyle? textStyle,
})

Implementation

MyButton({
  required this.label,
  required this.onPressed,
  this.color = Colors.green,
  this.textStyle,
});