copyWithCompanion method

DraftRow copyWithCompanion(
  1. DraftsCompanion data
)

Implementation

DraftRow copyWithCompanion(DraftsCompanion data) {
  return DraftRow(
    chatId: data.chatId.present ? data.chatId.value : this.chatId,
    data: data.data.present ? data.data.value : this.data,
  );
}