чьють чьють осталось

This commit is contained in:
Алексей Тихоненков 2024-12-11 05:09:49 +04:00
parent 7cede4272f
commit 0e8ce38c33

View File

@ -0,0 +1,19 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'quotes_dto.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
QuotesDto _$QuotesDtoFromJson(Map<String, dynamic> json) => QuotesDto(
quotes: (json['quotes'] as List<dynamic>?)
?.map((e) => QuoteDataDto.fromJson(e as Map<String, dynamic>))
.toList(),
);
QuoteDataDto _$QuoteDataDtoFromJson(Map<String, dynamic> json) => QuoteDataDto(
text: json['text'] as String?,
author: json['author'] as String?,
imageUrl: json['imageUrl'] as String?,
);