Cards constructor

Cards({
  1. int? cardId,
  2. String? vendor,
  3. String? virtualCardNumber,
  4. String? expiry,
  5. String? cvv,
  6. String? cardType,
})

Implementation

Cards(
    {this.cardId,
    this.vendor,
    this.virtualCardNumber,
    this.expiry,
    this.cvv,
    this.cardType});