copyWith method

EmployeePositionCompanion copyWith({
  1. Value<int>? id,
  2. Value<String>? code,
  3. Value<String>? name,
})

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,
  );
}