feat: space opus

Closes #833

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-08 22:39:29 +08:00
parent bcd0d63db7
commit 2d75d89825
28 changed files with 1107 additions and 511 deletions

View File

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