copyWith method
Implementation
ProjectCompanion copyWith({
Value<int>? id,
Value<String>? code,
Value<String>? name,
Value<String?>? description,
Value<String?>? note,
}) {
return ProjectCompanion(
id: id ?? this.id,
code: code ?? this.code,
name: name ?? this.name,
description: description ?? this.description,
note: note ?? this.note,
);
}