RecommendedChatFolder.fromJson constructor
Parse from a json
Implementation
factory RecommendedChatFolder.fromJson(Map<String, dynamic> json) =>
RecommendedChatFolder(
folder: ChatFolder.fromJson(json['folder']),
description: json['description'],
);