MessageRecipient.fromJson constructor
Implementation
factory MessageRecipient.fromJson(Map<String, dynamic> json) {
return MessageRecipient(
chatId: json['chat_id'] as int?,
chatType: ChatType.fromString(json['chat_type'] as String),
);
}