Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-17 18:08:55 +08:00
parent 906c21e252
commit 1d4eabb770
58 changed files with 875 additions and 684 deletions

View File

@@ -1,13 +1,13 @@
class Stat {
String? like;
String? like;
Stat({this.like});
Stat({this.like});
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
like: json['like'] as String?,
);
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
like: json['like'] as String?,
);
Map<String, dynamic> toJson() => {
'like': like,
};
Map<String, dynamic> toJson() => {
'like': like,
};
}