search method

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

Perform the query and fetch the transactions.

Implementation

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

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