fromJson static method
Implementation
static MessageReactionRemoveAllEvent fromJson(Map<String, dynamic> json) {
return MessageReactionRemoveAllEvent(
channelId: json['channel_id'],
messageId: json['message_id'],
guildId: json['guild_id'],
);
}