BankAccount class
Bank account data related to the token
- Annotations
-
- @freezed
Constructors
- BankAccount({required String id, BankAccountHolderType? accountHolderType, String? bankName, String? accountHolderName, String? country, String? currency, String? routingNumber, BankAccountStatus? status, String? fingerprint, String? last4})
-
constfactory
-
BankAccount.fromJson(Map<
String, dynamic> json) -
factory
Properties
- accountHolderName → String?
-
Full name of the account holder
no setterinherited
- accountHolderType → BankAccountHolderType?
-
Entity that is holder of the account.
no setterinherited
- bankName → String?
-
Name of the bank where the account is registered.
no setterinherited
-
copyWith
→ $BankAccountCopyWith<
BankAccount> -
no setterinherited
- country → String?
-
2 letter code of the country where the account is located
no setterinherited
- currency → String?
-
The three letter ISO 4217 code for the currency.
no setterinherited
- fingerprint → String?
-
Uniquely identifies the particular bank account.
no setterinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- id → String
-
Unique id for this bank account
no setterinherited
- last4 → String?
-
Last four numbers of the bank account number
no setterinherited
- routingNumber → String?
-
The routing number of the bank account (e.g. needer for US accounts).
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- status → BankAccountStatus?
-
Status of the bank account.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited