getAllZainboxes method

Future<GetAllZainboxesResponse?> getAllZainboxes()

Implementation

Future<GetAllZainboxesResponse?> getAllZainboxes() async {
  GetAllZainboxesRequest getAllZainboxesRequest = GetAllZainboxesRequest(
      isTest: isTest,
    publicKey: publicKey
  );

  return await getAllZainboxesRequest.getAllZainboxes();
}