copyWith method
Implementation
BookCompanion copyWith({
Value<int>? id,
Value<String>? code,
Value<String>? title,
Value<int>? seqNum,
Value<bool>? published,
Value<bool>? locked,
Value<String?>? imagePath,
Value<String?>? description,
Value<String?>? note,
}) {
return BookCompanion(
id: id ?? this.id,
code: code ?? this.code,
title: title ?? this.title,
seqNum: seqNum ?? this.seqNum,
published: published ?? this.published,
locked: locked ?? this.locked,
imagePath: imagePath ?? this.imagePath,
description: description ?? this.description,
note: note ?? this.note,
);
}