mirror of
https://github.com/salvadordeveloper/flutter-crypto-app.git
synced 2025-08-06 16:20:07 +08:00
20 lines
614 B
Dart
20 lines
614 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'change.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$_Change _$_$_ChangeFromJson(Map<String, dynamic> json) {
|
|
return _$_Change(
|
|
percentage: (json['percentage'] as num).toDouble(),
|
|
absolute: (json['absolute'] as num).toDouble(),
|
|
);
|
|
}
|
|
|
|
Map<String, dynamic> _$_$_ChangeToJson(_$_Change instance) => <String, dynamic>{
|
|
'percentage': instance.percentage,
|
|
'absolute': instance.absolute,
|
|
};
|