fromMap static method
Implementation
static Meal fromMap(Map<String, dynamic> map) {
return Meal(
year: map['year'],
month: map['month'],
day: map['day'],
mealType: map['mealType'],
fatLevel: map['fat_level'],
sugarLevel: map['sugar_level'],
);
}