чьють чьють осталось
This commit is contained in:
parent
7cede4272f
commit
0e8ce38c33
19
lib/data/dtos/quotes_dto.g.dart
Normal file
19
lib/data/dtos/quotes_dto.g.dart
Normal 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?,
|
||||
);
|
Loading…
x
Reference in New Issue
Block a user