search method

Future<SearchAccountsResponse> search({
  1. int? limit,
})

Perform the query and fetch the transactions.

Implementation

Future<SearchAccountsResponse> search({int? limit}) async {
  if (limit != null) {
    this.limit(limit);
  }

  // Search the transactions
  return indexerRepository.searchAccounts(parameters);
}