2024-12-15 23:23:00 +04:00
|
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
|
|
|
|
part of 'coins_dto.dart';
|
|
|
|
|
|
|
|
// **************************************************************************
|
|
|
|
// JsonSerializableGenerator
|
|
|
|
// **************************************************************************
|
|
|
|
|
|
|
|
CoinDataDto _$CoinDataDtoFromJson(Map<String, dynamic> json) => CoinDataDto(
|
|
|
|
id: json['id'] as String?,
|
|
|
|
name: json['name'] as String?,
|
|
|
|
image: json['image'] as String?,
|
2024-12-16 22:59:15 +04:00
|
|
|
currentPrice: (json['current_price'] as num?)?.toDouble(),
|
|
|
|
priceChange24h: (json['price_change_24h'] as num?)?.toDouble(),
|
2024-12-15 23:23:00 +04:00
|
|
|
);
|