CommunityResponse.fromJson constructor
Implementation
factory CommunityResponse.fromJson(Map<String, dynamic> json) =>
CommunityResponse(
data: readMapList(json["data"]).map(Community.fromJson).toList(),
links: Links.fromJson(readMap(json["links"])),
meta: Meta.fromJson(readMap(json["meta"])),
);