Files
open-im-sdk-flutter-m/lib/src/enum/message_status.dart
hrxiang 6ad47216fb update
2022-06-27 17:55:18 +08:00

15 lines
240 B
Dart

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