static Threat fromName(String name) { return Threat.values.firstWhere( (threat) => threat.name == name, orElse: () => Threat.undefined, ); }