CardResp constructor

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

Implementation

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