PEBankAccount constructor

PEBankAccount({
  1. required String token,
  2. 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,
});