mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
opt: member page
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -8,7 +8,9 @@ part of 'like_archive.dart';
|
||||
|
||||
LikeArchive _$LikeArchiveFromJson(Map<String, dynamic> json) => LikeArchive(
|
||||
count: (json['count'] as num?)?.toInt(),
|
||||
item: json['item'] as List<dynamic>?,
|
||||
item: (json['item'] as List<dynamic>?)
|
||||
?.map((json) => Item.fromJson(json))
|
||||
.toList(),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$LikeArchiveToJson(LikeArchive instance) =>
|
||||
|
||||
Reference in New Issue
Block a user