StoredCards constructor

StoredCards({
  1. String paymentType = PaymentConst.readyUi,
  2. required String checkoutId,
  3. String? brandName,
  4. required String tokenId,
  5. required String cvv,
})

Implementation

StoredCards({
  this.paymentType = PaymentConst.readyUi,
  required this.checkoutId,
  this.brandName,
  required this.tokenId,
  required this.cvv,
});