getAccountsOnFile method

List<AccountOnFile> getAccountsOnFile()

Implementation

List<AccountOnFile> getAccountsOnFile() {
  if (_accountsOnFile.isEmpty) {
    for (var product in basicPaymentProductGroups) {
      _accountsOnFile.addAll(product.accountsOnFile);
    }
  }
  return _accountsOnFile;
}