toModel<T> method
- T cursor(
- String cursor
Constructs a new PageInfo from this PageInfoMixin.
Implementation
PageInfo<T> toModel<T>(T Function(String cursor) cursor) => PageInfo<T>(
hasPrevious: hasPreviousPage,
hasNext: hasNextPage,
startCursor: startCursor == null ? null : cursor(startCursor!),
endCursor: endCursor == null ? null : cursor(endCursor!),
);