fromJson static method

GuildRoleUpdateEvent fromJson(
  1. Map<String, dynamic> json
)

Implementation

static GuildRoleUpdateEvent fromJson(Map<String, dynamic> json) {
  return GuildRoleUpdateEvent(
    guildId: json['guild_id'],
    role: Role.fromJson(json['role']),
  );
}