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