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