search method

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

Perform the query and fetch the transactions.

Implementation

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

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