reversed method
Implementation
Page<T, C> reversed() {
return Page(
List.from(this.edges.reversed),
PageInfo(
hasNext: this.info.hasPrevious,
hasPrevious: this.info.hasNext,
startCursor: this.info.endCursor,
endCursor: this.info.startCursor,
),
);
}