toModel<T> method

PageInfo<T> toModel<T>(
  1. T cursor(
    1. 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!),
);