copyWithCompanion method

ChatItemRow copyWithCompanion(
  1. ChatItemsCompanion data
)

Implementation

ChatItemRow copyWithCompanion(ChatItemsCompanion data) {
  return ChatItemRow(
    id: data.id.present ? data.id.value : this.id,
    chatId: data.chatId.present ? data.chatId.value : this.chatId,
    authorId: data.authorId.present ? data.authorId.value : this.authorId,
    at: data.at.present ? data.at.value : this.at,
    status: data.status.present ? data.status.value : this.status,
    data: data.data.present ? data.data.value : this.data,
    cursor: data.cursor.present ? data.cursor.value : this.cursor,
    ver: data.ver.present ? data.ver.value : this.ver,
  );
}