class Entry { final String name; final double calories; final double protein; final double fat; final double carb; const Entry({ required this.name, required this.calories, required this.protein, required this.fat, required this.carb, }); }