messageSendingStatePending property
The message is being sent now, but has not yet been delivered to the server
Implementation
MessageSendingStatePending? get messageSendingStatePending {
if (this is MessageSendingStatePending) {
return this as MessageSendingStatePending;
}
return null;
}