copyWith method

MonologsCompanion copyWith({
  1. Value<String>? identifier,
  2. Value<String>? chatId,
  3. Value<int>? rowid,
})

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