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