Paging.fromJson constructor

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

Implementation

factory Paging.fromJson(Map<String, dynamic> json) => Paging(
      count: json["count"],
      start: json["start"],
      links: List<dynamic>.from(json["links"].map((x) => x)),
    );