PaymentCardStripe constructor

PaymentCardStripe({
  1. int? cardId,
  2. String? paymentCardId,
  3. String? cardHolderName,
  4. String? cardBrand,
  5. int? cardExpMonth,
  6. int? cardExpYear,
  7. String? cardLast4,
  8. int? timestamp,
  9. String? gateway,
  10. String? cardNumber,
  11. String? cardCVC,
  12. bool setAsDefault = false,
  13. bool isNewCard = false,
})

Implementation

PaymentCardStripe(
    {this.cardId,
    this.paymentCardId,
    this.cardHolderName,
    this.cardBrand,
    this.cardExpMonth,
    this.cardExpYear,
    this.cardLast4,
    this.timestamp,
    this.gateway,
    this.cardNumber,
    this.cardCVC,
    this.setAsDefault = false,
    this.isNewCard = false});