MetaDataJson constructor

MetaDataJson({
  1. String? status,
  2. String? responseCode,
  3. String? responseMessage,
  4. String? token,
  5. String? expirationDate,
  6. String? cardType,
  7. String? maskedCardNumber,
  8. String? cardTransactionIdentifier,
  9. String? taskId,
  10. String? transactionId,
  11. DateTime? transactionTimestamp,
  12. String? expiration,
  13. String? cvv,
  14. String? fullName,
  15. List<Issuer>? issuer,
})

Implementation

MetaDataJson({
  this.status,
  this.responseCode,
  this.responseMessage,
  this.token,
  this.expirationDate,
  this.cardType,
  this.maskedCardNumber,
  this.cardTransactionIdentifier,
  this.taskId,
  this.transactionId,
  this.transactionTimestamp,
  this.expiration,
  this.cvv,
  this.fullName,
  this.issuer,
});