open-im-sdk-flutter-m/lib/src/enum/message_status.dart

15 lines
242 B
Dart

/// Message Send Status
class MessageStatus {
/// Sending
static const sending = 1;
/// Successfully sent
static const succeeded = 2;
/// Send failed
static const failed = 3;
/// Already deleted
static const deleted = 4;
}