fromGraphJson static method
Implementation
static Collections fromGraphJson(Map<String, dynamic> json) {
return Collections(
collectionList: _getCollectionList(json),
hasNextPage: (json['pageInfo'] ?? const {})['hasNextPage']);
}
static Collections fromGraphJson(Map<String, dynamic> json) {
return Collections(
collectionList: _getCollectionList(json),
hasNextPage: (json['pageInfo'] ?? const {})['hasNextPage']);
}