PaymentMethodCard class final

payment_method_card

Constructors

PaymentMethodCard({required String brand, PaymentMethodCardChecks? checks, String? country, String? description, String? displayBrand, required int expMonth, required int expYear, String? fingerprint, required String funding, String? iin, String? issuer, required String last4, Networks? networks, PaymentMethodCardThreeDSecureUsage? threeDSecureUsage, PaymentMethodCardWallet? wallet})
payment_method_card
const
PaymentMethodCard.fromJson(Object? json)
factory

Properties

brand → String
final
checks → PaymentMethodCardChecks?
Checks on Card address and CVC if provided.
final
country → String?
final
description → String?
final
displayBrand → String?
final
expMonth → int
final
expYear → int
final
fingerprint → String?
final
funding → String
final
hashCode → int
The hash code for this object.
no setterinherited
iin → String?
final
issuer → String?
final
last4 → String
final
networks → Networks?
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
threeDSecureUsage → PaymentMethodCardThreeDSecureUsage?
Contains details on how this Card may be used for 3D Secure authentication.
final
wallet → PaymentMethodCardWallet?
If this Card is part of a card wallet, this contains the details of the card wallet.
final

Methods

encodeWith<V>(Encoder<V> encoder) → V
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() → Map<String, Object?>
toString() → String
A string representation of this object.
override

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Static Methods

encode<V>(PaymentMethodCard instance, Encoder<V> encoder) → V