PageLink.fromJson constructor

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

Implementation

PageLink.fromJson(Map<String, dynamic> json) {
  next = json['next'];
  previous = json['previous'];
}