CardResp constructor

CardResp({
  1. required String bin,
  2. required String status,
  3. required String token,
  4. required String expiryYear,
  5. required String expiryMonth,
  6. required String transactionReference,
  7. required String type,
  8. required String number,
  9. required String origin,
})

Implementation

CardResp({
  required this.bin,
  required this.status,
  required this.token,
  required this.expiryYear,
  required this.expiryMonth,
  required this.transactionReference,
  required this.type,
  required this.number,
  required this.origin,
});