feat: 动态筛选&UP主筛选
This commit is contained in:
@ -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'];
|
||||
}
|
||||
|
Reference in New Issue
Block a user