Collections.fromGraphJson constructor
The Collections from graph json
Implementation
factory Collections.fromGraphJson(Map<String, dynamic> json) => Collections(
collectionList: _getCollectionList(json),
hasNextPage: (json['pageInfo'] ?? const {})['hasNextPage'],
);