copyWithCompanion method
Implementation
ChatItemViewRow copyWithCompanion(ChatItemViewsCompanion data) {
return ChatItemViewRow(
chatId: data.chatId.present ? data.chatId.value : this.chatId,
chatItemId: data.chatItemId.present
? data.chatItemId.value
: this.chatItemId,
);
}