51 lines
1.7 KiB
Dart
51 lines
1.7 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'characters_dto.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
CharactersDto _$CharactersDtoFromJson(Map<String, dynamic> json) =>
|
|
CharactersDto(
|
|
data: (json['data'] as List<dynamic>?)
|
|
?.map((e) => CharacterDataDto.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
meta: json['meta'] == null
|
|
? null
|
|
: MetaDto.fromJson(json['meta'] as Map<String, dynamic>),
|
|
);
|
|
|
|
MetaDto _$MetaDtoFromJson(Map<String, dynamic> json) => MetaDto(
|
|
pagination: json['pagination'] == null
|
|
? null
|
|
: PaginationDto.fromJson(json['pagination'] as Map<String, dynamic>),
|
|
);
|
|
|
|
PaginationDto _$PaginationDtoFromJson(Map<String, dynamic> json) =>
|
|
PaginationDto(
|
|
current: (json['current'] as num?)?.toInt(),
|
|
next: (json['next'] as num?)?.toInt(),
|
|
last: (json['last'] as num?)?.toInt(),
|
|
);
|
|
|
|
CharacterDataDto _$CharacterDataDtoFromJson(Map<String, dynamic> json) =>
|
|
CharacterDataDto(
|
|
id: json['id'] as String?,
|
|
type: json['type'] as String?,
|
|
attributes: json['attributes'] == null
|
|
? null
|
|
: CharacterAttributesDataDto.fromJson(
|
|
json['attributes'] as Map<String, dynamic>),
|
|
);
|
|
|
|
CharacterAttributesDataDto _$CharacterAttributesDataDtoFromJson(
|
|
Map<String, dynamic> json) =>
|
|
CharacterAttributesDataDto(
|
|
name: json['name'] as String?,
|
|
age: json['age'] as String?,
|
|
courses:
|
|
(json['courses'] as List<dynamic>?)?.map((e) => e as String).toList(),
|
|
image: json['image'] as String?,
|
|
);
|