20 lines
630 B
Dart
20 lines
630 B
Dart
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'search_coins_dto.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
SearchCoinsDto _$SearchCoinsDtoFromJson(Map<String, dynamic> json) =>
|
||
|
SearchCoinsDto(
|
||
|
coins: (json['coins'] as List<dynamic>?)
|
||
|
?.map((e) => SearchCoinDto.fromJson(e as Map<String, dynamic>))
|
||
|
.toList(),
|
||
|
);
|
||
|
|
||
|
SearchCoinDto _$SearchCoinDtoFromJson(Map<String, dynamic> json) =>
|
||
|
SearchCoinDto(
|
||
|
id: json['id'] as String?,
|
||
|
);
|