15 lines
242 B
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;
|
|
}
|