CardTransaction constructor

CardTransaction({
  1. String? cardNumber,
  2. String? expiryMonth,
  3. String? expiryYear,
  4. String? cvv,
})

Implementation

CardTransaction({
  this.cardNumber,
  this.expiryMonth,
  this.expiryYear,
  this.cvv,
});