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