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
24 lines
782 B
Dart
24 lines
782 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'media_list_response.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
MediaListResponse _$MediaListResponseFromJson(Map<String, dynamic> json) =>
|
|
MediaListResponse(
|
|
count: (json['count'] as num?)?.toInt(),
|
|
list: (json['list'] as List<dynamic>?)
|
|
?.map((item) => FavList.fromJson(item))
|
|
.toList(),
|
|
hasMore: json['has_more'] as bool?,
|
|
);
|
|
|
|
Map<String, dynamic> _$MediaListResponseToJson(MediaListResponse instance) =>
|
|
<String, dynamic>{
|
|
'count': instance.count,
|
|
'list': instance.list,
|
|
'has_more': instance.hasMore,
|
|
};
|