DapiCard constructor

DapiCard({
  1. String? cardNumber,
  2. num? creditLimit,
  3. DapiNamePair? currency,
  4. String? type,
  5. String? name,
  6. String? id,
  7. String? expiryDate,
  8. String? status,
  9. CreditBalance? balance,
})

Implementation

DapiCard(
    {this.cardNumber,
    this.creditLimit,
    this.currency,
    this.type,
    this.name,
    this.id,
    this.expiryDate,
    this.status,
    this.balance});