UpdateChatOnlineMemberCount.fromJson constructor
Parse from a json
Implementation
factory UpdateChatOnlineMemberCount.fromJson(Map<String, dynamic> json) => UpdateChatOnlineMemberCount(
chatId: json['chat_id'],
onlineMemberCount: json['online_member_count'],
extra: json['@extra'],
clientId: json['@client_id'],
);