add superChatType

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-17 19:54:30 +08:00
parent ce5e85e64b
commit 2e73688688
8 changed files with 60 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
enum SuperChatType {
valid('有效时间内显示'),
persist('持久显示'),
disable('不显示'),
;
final String title;
const SuperChatType(this.title);
}