PageInfo.fromJson constructor

PageInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

PageInfo.fromJson(Map<String, dynamic> json) {
  startCursor = json['startCursor'];
  hasNextPage = json['hasNextPage'];
  hasPreviousPage = json['hasPreviousPage'];
  endCursor = json['endCursor'];
}