feat: 动态筛选&UP主筛选

This commit is contained in:
guozhigq
2023-06-29 23:37:55 +08:00
parent eca48bc77e
commit b43b9549b9
9 changed files with 557 additions and 71 deletions

View File

@ -526,7 +526,7 @@ class OpusPicsModel {
OpusPicsModel.fromJson(Map<String, dynamic> json) {
width = json['width'];
height = json['height'];
size = json['size'].toInt();
size = json['size'] != null ? json['size'].toInt() : 0;
src = json['src'];
url = json['url'];
}