21 lines
748 B
Dart
21 lines
748 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'breads_dto.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
BreadsDto _$BreadsDtoFromJson(Map<String, dynamic> json) => BreadsDto(
|
|
foods: (json['foods'] as List<dynamic>?)
|
|
?.map((e) => BreadDataDto.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|
|
|
|
BreadDataDto _$BreadDataDtoFromJson(Map<String, dynamic> json) => BreadDataDto(
|
|
fdcId: (json['fdcId'] as num?)?.toInt(),
|
|
brandName: json['brandName'] as String?,
|
|
description: json['description'] as String?,
|
|
image: json['image'] as String?,
|
|
);
|