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
20 lines
643 B
Dart
20 lines
643 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'season.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Season _$SeasonFromJson(Map<String, dynamic> json) => Season(
|
|
count: (json['count'] as num?)?.toInt(),
|
|
item: (json['item'] as List<dynamic>?)
|
|
?.map((e) => Item.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|
|
|
|
Map<String, dynamic> _$SeasonToJson(Season instance) => <String, dynamic>{
|
|
'count': instance.count,
|
|
'item': instance.item,
|
|
};
|