ChatItem constructor
- ChatItemId id,
- ChatId chatId,
- User author,
- PreciseDateTime at, {
- SendingStatus? status,
Implementation
ChatItem(this.id, this.chatId, this.author, this.at, {SendingStatus? status})
: status = Rx(
status ?? (id.isLocal ? SendingStatus.error : SendingStatus.sent),
);