20 lines
692 B
Dart
Raw Normal View History

2024-12-11 11:50:50 +04:00
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'food_dto.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
FoodsDto _$FoodsDtoFromJson(Map<String, dynamic> json) => FoodsDto(
meals: (json['meals'] as List<dynamic>?)
?.map((e) => FoodDataDto.fromJson(e as Map<String, dynamic>))
.toList(),
);
FoodDataDto _$FoodDataDtoFromJson(Map<String, dynamic> json) => FoodDataDto(
idMeal: json['idMeal'] as String?,
strMeal: json['strMeal'] as String?,
strMealThumb: json['strMealThumb'] as String?,
);