Button constructor

Button({
  1. required PrimaryColor favoriteButton,
  2. required BankButton bankButton,
  3. required PrimaryColor actionButton,
  4. required String textColor,
  5. required String backgroundColor,
})

Implementation

Button({
  required this.favoriteButton,
  required this.bankButton,
  required this.actionButton,
  required this.textColor,
  required this.backgroundColor,
});