copyWith method
Implementation
NoteCompanion copyWith({
Value<int>? id,
Value<String>? title,
Value<String>? content,
Value<DateTime>? createDateTime,
Value<String>? colorCode,
}) {
return NoteCompanion(
id: id ?? this.id,
title: title ?? this.title,
content: content ?? this.content,
createDateTime: createDateTime ?? this.createDateTime,
colorCode: colorCode ?? this.colorCode,
);
}