Button constructor

Button({
  1. required String color,
  2. required String bgColor,
})

Implementation

Button({
  required this.color,
  required this.bgColor,
});