feat: member cheese

feat: fav pugv

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-07 11:19:59 +08:00
parent 26a5b7b7a7
commit 6d55321699
22 changed files with 634 additions and 17 deletions

View File

@@ -11,16 +11,16 @@ class Brief {
}
class Img {
num? aspectRatio;
num aspectRatio;
String? url;
Img({
this.aspectRatio,
required this.aspectRatio,
this.url,
});
factory Img.fromJson(Map<String, dynamic> json) => Img(
aspectRatio: json['aspect_ratio'],
aspectRatio: json['aspect_ratio'] ?? 1,
url: json['url'] as String?,
);
}