CollectionPage.fromJson constructor

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

Implementation

CollectionPage.fromJson(Map<String, dynamic> json)
    : context = json["@context"],
      type = json["type"],
      next = json["next"],
      prev = json["prev"],
      partOf = json["partOf"],
      id = json["id"],
      items = json["items"];