olshab
a676d454ca
changed Cupertino search bar to Material UI 3 changed baseline color and card colors implemented fetching crypto data from public API (untested)
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?,
|
|
);
|