mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
60 lines
2.0 KiB
Dart
60 lines
2.0 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'tab.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Tab _$TabFromJson(Map<String, dynamic> json) => Tab(
|
|
archive: json['archive'] as bool?,
|
|
article: json['article'] as bool?,
|
|
clip: json['clip'] as bool?,
|
|
album: json['album'] as bool?,
|
|
favorite: json['favorite'] as bool?,
|
|
bangumi: json['bangumi'] as bool?,
|
|
coin: json['coin'] as bool?,
|
|
like: json['like'] as bool?,
|
|
community: json['community'] as bool?,
|
|
dyn: false, //json['dynamic'] as bool?,
|
|
audios: json['audios'] as bool?,
|
|
shop: json['shop'] as bool?,
|
|
mall: json['mall'] as bool?,
|
|
ugcSeason: json['ugc_season'] as bool?,
|
|
comic: json['comic'] as bool?,
|
|
cheese: json['cheese'] as bool?,
|
|
subComic: json['sub_comic'] as bool?,
|
|
activity: json['activity'] as bool?,
|
|
series: json['series'] as bool?,
|
|
charging: json['charging'] as bool?,
|
|
opus: json['opus'] as bool?,
|
|
cheeseVideo: json['cheese_video'] as bool?,
|
|
brand: json['brand'] as bool?,
|
|
);
|
|
|
|
Map<String, dynamic> _$TabToJson(Tab instance) => <String, dynamic>{
|
|
'archive': instance.archive,
|
|
'article': instance.article,
|
|
'clip': instance.clip,
|
|
'album': instance.album,
|
|
'favorite': instance.favorite,
|
|
'bangumi': instance.bangumi,
|
|
'coin': instance.coin,
|
|
'like': instance.like,
|
|
'community': instance.community,
|
|
'dynamic': instance.dyn,
|
|
'audios': instance.audios,
|
|
'shop': instance.shop,
|
|
'mall': instance.mall,
|
|
'ugc_season': instance.ugcSeason,
|
|
'comic': instance.comic,
|
|
'cheese': instance.cheese,
|
|
'sub_comic': instance.subComic,
|
|
'activity': instance.activity,
|
|
'series': instance.series,
|
|
'charging': instance.charging,
|
|
'opus': instance.opus,
|
|
'cheese_video': instance.cheeseVideo,
|
|
'brand': instance.brand,
|
|
};
|