fooder-app/lib/models/meal.dart
2023-08-28 14:45:32 +02:00

41 lines
1.1 KiB
Dart

import 'package:fooder/models/entry.dart';
class Meal {
final List<Entry> entries;
final int id;
final String name;
final int order;
final double calories;
final double protein;
final double carb;
final double fat;
final double fiber;
final int diaryId;
Meal({
required this.entries,
required this.id,
required this.name,
required this.order,
required this.calories,
required this.protein,
required this.carb,
required this.fat,
required this.fiber,
required this.diaryId,
});
Meal.fromJson(Map<String, dynamic> map)
: entries = (map['entries'] as List<dynamic>)
.map((e) => Entry.fromJson(e as Map<String, dynamic>))
.toList(),
id = map['id'] as int,
name = map['name'] as String,
order = map['order'] as int,
calories = map['calories'] as double,
protein = map['protein'] as double,
carb = map['carb'] as double,
fat = map['fat'] as double,
fiber = map['fiber'] as double,
diaryId = map['diary_id'] as int;
}