PaginatedObjectsResponse constructor

PaginatedObjectsResponse(
  1. List<SuiObjectResponse> data,
  2. String nextCursor,
  3. bool hasNextPage
)

Implementation

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