PEBankAccount class
Represents a bank account stored within PayEngine.
This class contains a secure token and account details, ensuring sensitive banking information is securely managed within the system.
Constructors
- PEBankAccount({required String token, required AccountData accountData})
- Creates a new instance of PEBankAccount.
-
PEBankAccount.fromJson(Map<
String, dynamic> json) -
Parses a PEBankAccount object from a JSON map.
factory
Properties
- accountData → AccountData
-
The associated bank account details.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- token → String
-
A unique token representing the bank account.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> - Converts the PEBankAccount object to a JSON map.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited