fromJson static method
Implementation
static GuildRoleDeleteEvent fromJson(Map<String, dynamic> json) {
return GuildRoleDeleteEvent(
guildId: json['guild_id'],
roleId: json['role_id'],
);
}
static GuildRoleDeleteEvent fromJson(Map<String, dynamic> json) {
return GuildRoleDeleteEvent(
guildId: json['guild_id'],
roleId: json['role_id'],
);
}