fromValue static method
Deserialize from the integer stored in the database.
Implementation
static MessageStatus fromValue(int value) {
return MessageStatus.values.firstWhere(
(s) => s.value == value,
orElse: () => MessageStatus.pending, // Safe default
);
}