Brett
2025-01-08 16:21:28 +08:00
parent d02be57c1e
commit 95ececeba0
11 changed files with 157 additions and 22 deletions

View File

@@ -12,3 +12,12 @@ class MessageStatus {
/// Already deleted
static const deleted = 4;
}
enum GetHistoryViewType {
history(0),
search(1);
final int rawValue;
const GetHistoryViewType(this.rawValue);
}