13 lines
227 B
Dart
13 lines
227 B
Dart
class DietChartModel {
|
|
final String image;
|
|
|
|
DietChartModel({
|
|
required this.image,
|
|
});
|
|
factory DietChartModel.fromJson(Map<String, dynamic> json) {
|
|
return DietChartModel(
|
|
image: json["image"],
|
|
);
|
|
}
|
|
}
|