15 lines
240 B
Dart
15 lines
240 B
Dart
/// 消息发送状态
|
|
class MessageStatus {
|
|
/// 发送中
|
|
static const sending = 1;
|
|
|
|
/// 已发送成功
|
|
static const succeeded = 2;
|
|
|
|
/// 发送失败
|
|
static const failed = 3;
|
|
|
|
/// 已经删除
|
|
static const deleted = 4;
|
|
}
|