Info.fromJson constructor

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

Implementation

factory Info.fromJson(Map<String, dynamic> json) => Info(
      count: json["count"],
      pages: json["pages"],
      next: json["next"],
      prev: json["prev"],
    );