Pagination constructor
Pagination({})
Main pagination constructor.
Can receive the nextCursor
, if hasMore
pages, if isEmpty
and the corresponding list: blocks
, databases
or pages.
Implementation
Pagination({
this.nextCursor,
this.hasMore: false,
this.isEmpty: false,
List<Block>? blocks,
List<Database>? databases,
});