PEBankAccount constructor
PEBankAccount({
- required String token,
- required AccountData accountData,
Creates a new instance of PEBankAccount.
token: A unique token representing the bank account.accountData: A AccountData object containing the account details.
Implementation
PEBankAccount({
required this.token,
required this.accountData,
});