CustomUI class

This class is used to define a CustomUI object which is used to make payments using the PaymentConst. customUi payment type. It has parameters to define the checkoutId, brandName, cardNumber, holderName, month, year, cvv and enabledTokenization (optional).

Constructors

CustomUI({required String checkoutId, required String brandName, required String cardNumber, required String holderName, required String month, required String year, required String cvv, bool enabledTokenization = false})

Properties

brandName String
brandName variable could be used to store the name of the brand or company
getter/setter pair
cardNumber String
cardNumber variable would typically hold the numerical sequence that uniquely identifies a payment card
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
enabledTokenization bool
typically refers to a boolean variable or a configuration option that determines whether tokenization is enabled or disabled in a payment processing system or application.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
holderName String
holderName variable would typically hold the name of the individual or entity that owns or is authorized to use the payment card
getter/setter pair
month String
the month variable could be used to represent the expiration month of a credit or debit card
getter/setter pair
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
year String
the year variable could be used to represent the expiration year of a credit or debit card
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