UpdateChatThemes.fromJson constructor
Parse from a json
Implementation
factory UpdateChatThemes.fromJson(Map<String, dynamic> json) =>
UpdateChatThemes(
chatThemes: List<ChatTheme>.from((json['chat_themes'] ?? [])
.map((item) => ChatTheme.fromJson(item))
.toList()),
extra: json['@extra'],
clientId: json['@client_id'],
);