class Symptom { final String id; final String description; final double weight; Symptom({required this.id, required this.description, required this.weight}); }