StoredCards class
This is the class for StoredCards. It has fields to store payment type, checkoutId, tokenId, brandName and cvv. PaymentType is set to the PaymentConst.readyUi, checkoutId and tokenId are required fields and brandName and cvv are optional fields.
Constructors
Properties
- brandName ↔ String?
-
brandName variable could be used to store the name of the brand or company
getter/setter pair
- checkoutId ↔ String
-
declares a string variable named checkoutId without assigning it an initial value.
getter/setter pair
- cvv ↔ String
-
the cvv variable holds the three- or four-digit security code printed on the back (for Visa, Mastercard, and Discover)
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- paymentType ↔ String
-
initializes a variable named paymentType with the value PaymentConst.customUi.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- tokenId ↔ String
-
a "tokenId" often refers to a unique identifier associated with a payment method or transaction. It's commonly used in tokenization processes, where sensitive payment information (such as credit card details) is replaced with a secure token.
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited