fromJson static method

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

Implementation

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