mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
19 lines
591 B
Dart
19 lines
591 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'coin_archive.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
CoinArchive _$CoinArchiveFromJson(Map<String, dynamic> json) => CoinArchive(
|
|
count: (json['count'] as num?)?.toInt(),
|
|
item: json['item'] as List<dynamic>?,
|
|
);
|
|
|
|
Map<String, dynamic> _$CoinArchiveToJson(CoinArchive instance) =>
|
|
<String, dynamic>{
|
|
'count': instance.count,
|
|
'item': instance.item,
|
|
};
|