SearchTransactionsResponse constructor

const SearchTransactionsResponse(
  1. List<BlockTransaction> transactions,
  2. int? totalCount,
  3. int? nextOffset
)

Implementation

const SearchTransactionsResponse(
  this.transactions,
  this.totalCount,
  this.nextOffset,
);