copyWith method
Implementation
GenderCompanion copyWith({
Value<String>? id,
Value<String>? name,
Value<int>? rowid,
}) {
return GenderCompanion(
id: id ?? this.id,
name: name ?? this.name,
rowid: rowid ?? this.rowid,
);
}
GenderCompanion copyWith({
Value<String>? id,
Value<String>? name,
Value<int>? rowid,
}) {
return GenderCompanion(
id: id ?? this.id,
name: name ?? this.name,
rowid: rowid ?? this.rowid,
);
}