fromJson static method
Implementation
static VoiceServerUpdateEvent fromJson(Map<String, dynamic> json) {
return VoiceServerUpdateEvent(
token: json['token'],
guildId: json['guild_id'],
endpoint: json['endpoint'],
);
}
static VoiceServerUpdateEvent fromJson(Map<String, dynamic> json) {
return VoiceServerUpdateEvent(
token: json['token'],
guildId: json['guild_id'],
endpoint: json['endpoint'],
);
}