PMU_Petrushin_PIbd-32/lib/data/dtos/foods_dto.g.dart
GokaPek bf376bd912 5
2024-10-18 19:29:21 +04:00

21 lines
740 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'foods_dto.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
FoodsDto _$FoodsDtoFromJson(Map<String, dynamic> json) => FoodsDto(
foods: (json['foods'] as List<dynamic>?)
?.map((e) => FoodDataDto.fromJson(e as Map<String, dynamic>))
.toList(),
);
FoodDataDto _$FoodDataDtoFromJson(Map<String, dynamic> json) => FoodDataDto(
fdcId: (json['fdcId'] as num?)?.toInt(),
brandName: json['brandName'] as String?,
description: json['description'] as String?,
image: json['image'] as String?,
);