copyWith method
Implementation
DraftsCompanion copyWith({
Value<String>? chatId,
Value<String>? data,
Value<int>? rowid,
}) {
return DraftsCompanion(
chatId: chatId ?? this.chatId,
data: data ?? this.data,
rowid: rowid ?? this.rowid,
);
}