class Nutritiondetail {
final String nutrient;
final double value;
Nutritiondetail(this.nutrient, this.value);
}