// GENERATED CODE - DO NOT MODIFY BY HAND part of 'coins_dto.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** CoinDataDto _$CoinDataDtoFromJson(Map json) => CoinDataDto( id: json['id'] as String?, name: json['name'] as String?, image: json['image'] as String?, currentPrice: (json['current_price'] as num?)?.toDouble(), priceChange24h: (json['price_change_24h'] as num?)?.toDouble(), );