fromJson static method
Implementation
static MessageReactionRemoveEvent fromJson(Map<String, dynamic> json) {
return MessageReactionRemoveEvent(
userId: json['user_id'],
channelId: json['channel_id'],
messageId: json['message_id'],
guildId: json['guild_id'],
emoji: Emoji.fromJson(json['emoji']),
);
}