CardFormResults constructor

const CardFormResults({
  1. required String email,
  2. required String cardNumber,
  3. required String cardExpiry,
  4. required String cardSec,
  5. required String name,
  6. required String country,
  7. required String zip,
  8. required String phone,
})

Class that houses all expected form data from the checkout ui

Implementation

const CardFormResults({
  required this.email,
  required this.cardNumber,
  required this.cardExpiry,
  required this.cardSec,
  required this.name,
  required this.country,
  required this.zip,
  required this.phone,
});