2024-10-14 21:25:43 +04:00
|
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
|
|
|
|
part of 'pokemon_dto.dart';
|
|
|
|
|
|
|
|
// **************************************************************************
|
|
|
|
// JsonSerializableGenerator
|
|
|
|
// **************************************************************************
|
|
|
|
|
|
|
|
PokemonDto _$PokemonDtoFromJson(Map<String, dynamic> json) => PokemonDto(
|
2024-10-29 14:36:44 +04:00
|
|
|
results: (json['results'] as List<dynamic>?)
|
2024-10-18 21:36:44 +04:00
|
|
|
?.map((e) => PokemonDataDto.fromJson(e as Map<String, dynamic>))
|
2024-10-17 00:37:52 +04:00
|
|
|
.toList(),
|
2024-10-29 14:36:44 +04:00
|
|
|
count: (json['count'] as num?)?.toInt(),
|
|
|
|
next: json['next'] as String?,
|
|
|
|
previous: json['previous'] as String?,
|
2024-10-14 21:25:43 +04:00
|
|
|
);
|
|
|
|
|
2024-10-18 21:36:44 +04:00
|
|
|
PokemonDataDto _$PokemonDataDtoFromJson(Map<String, dynamic> json) =>
|
|
|
|
PokemonDataDto(
|
2024-10-29 14:36:44 +04:00
|
|
|
name: json['name'] as String?,
|
2024-10-29 14:54:56 +04:00
|
|
|
url: json['url'] as String?,
|
2024-10-17 00:37:52 +04:00
|
|
|
);
|