Paging.fromJson constructor

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

Implementation

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