fromJson static method
Inherited by: ChatListArchive ChatListFolder ChatListMain
Implementation
static ChatListFolder? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return ChatListFolder(chatFolderId: (json['chat_folder_id'] as int?) ?? 0);
}