Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2026-01-05 14:21:59 +08:00
parent c226f8f6df
commit 5a0b045a1f
14 changed files with 232 additions and 71 deletions

View File

@@ -71,8 +71,8 @@ class InsertCard {
String? id;
dynamic alt;
String? url;
num? width;
num? height;
double? width;
double? height;
num? size;
String? status;
@@ -92,8 +92,8 @@ class InsertCard {
id = json['id'] == '' ? null : json['id'];
alt = json['alt'];
url = json['url'];
width = json['width'];
height = json['height'];
width = (json['width'] as num?)?.toDouble();
height = (json['height'] as num?)?.toDouble();
size = json['size'];
status = json['status'];
}