isSending property
bool
get
isSending
Implementation
bool get isSending {
if (statuses.isEmpty || statuses.length > 1) return false;
final s = statusFor(me);
return s == MessageStatus.sending || s == MessageStatus.retrying;
}