IssuingCardWallets constructor

const IssuingCardWallets({
  1. required IssuingCardApplePay applePay,
  2. required IssuingCardGooglePay googlePay,
  3. String? primaryAccountIdentifier,
})

Information relating to digital wallets (like Apple Pay and Google Pay).

Implementation

const IssuingCardWallets({
  required this.applePay,
  required this.googlePay,
  this.primaryAccountIdentifier,
});