copyWithCompanion method

ChatItemViewRow copyWithCompanion(
  1. ChatItemViewsCompanion data
)

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,
  );
}