mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-29 20:48:40 +00:00
Refactor member page (#3)
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
This commit is contained in:
23
lib/models/space_fav/media_list_response.g.dart
Normal file
23
lib/models/space_fav/media_list_response.g.dart
Normal file
@@ -0,0 +1,23 @@
|
||||
// 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,
|
||||
};
|
||||
Reference in New Issue
Block a user