PaymentMethod constructor

PaymentMethod(
  1. {bool isActive,
  2. String last4Digits,
  3. String resource,
  4. String createdAt,
  5. bool isVerified,
  6. String uri,
  7. String expirationYear,
  8. String first4Digits,
  9. String updatedAt,
  10. bool isValid,
  11. String cardBrand,
  12. String expirationMonth,
  13. String fingerprint,
  14. String id,
  15. VerificationChecklist verificationChecklist,
  16. String holderName,
  17. String customer}
)

Implementation

PaymentMethod(
    {this.isActive,
    this.last4Digits,
    this.resource,
    this.createdAt,
    this.isVerified,
    this.uri,
    this.expirationYear,
    this.first4Digits,
    this.updatedAt,
    this.isValid,
    this.cardBrand,
    this.expirationMonth,
    this.fingerprint,
    this.id,
    this.verificationChecklist,
    this.holderName,
    this.customer});