// GENERATED CODE - DO NOT MODIFY BY HAND part of 'bread_dto.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** BreadsDto _$BreadsDtoFromJson(Map json) => BreadsDto( data: (json['data'] as List?) ?.map((e) => BreadDataDto.fromJson(e as Map)) .toList(), ); BreadDataDto _$BreadDataDtoFromJson(Map json) => BreadDataDto( id: json['id'] as String?, type: json['type'] as String?, attributes: json['attributes'] == null ? null : BreadAttributesDataDto.fromJson( json['attributes'] as Map), ); BreadAttributesDataDto _$BreadAttributesDataDtoFromJson( Map json) => BreadAttributesDataDto( name: json['name'] as String?, info: json['info'] as String?, image: json['image'] as String?, );