PaginatedTransactionResponse constructor

PaginatedTransactionResponse(
  1. List<SuiTransactionBlockResponse> data,
  2. String? nextCursor,
  3. bool hasNextPage
)

Implementation

PaginatedTransactionResponse(
  this.data,
  this.nextCursor,
  this.hasNextPage,
);