PaymentFormTheme constructor

const PaymentFormTheme({
  1. required int backgroundColor,
  2. required int textColor,
  3. required int hintColor,
  4. required int linkColor,
  5. required int buttonColor,
  6. required int buttonTextColor,
})

Theme colors for a payment form

Implementation

const PaymentFormTheme({
  required this.backgroundColor,
  required this.textColor,
  required this.hintColor,
  required this.linkColor,
  required this.buttonColor,
  required this.buttonTextColor,
});