getAllZainboxAccounts method

Future<ZainboxAccountResponse?> getAllZainboxAccounts({
  1. dynamic zainboxCodeName,
})

Implementation

Future<ZainboxAccountResponse?> getAllZainboxAccounts({zainboxCodeName}) async {
  GetAllZainboxAccountsRequest getAllZainboxAccountsRequest = GetAllZainboxAccountsRequest(
      zainboxCodeName: zainboxCodeName,
      publicKey: publicKey,
      isTest: isTest
  );

  return getAllZainboxAccountsRequest.getAllZainboxAccounts();
}