copyWith method
Implementation
CategoryWeebi copyWith({
int? id,
String? title,
DateTime? creationDate,
DateTime? updateDate,
Set<int>? calibresIds,
int? color,
}) {
return CategoryWeebi(
calibresIds: calibresIds ?? this.calibresIds,
color: color ?? this.color,
title: title ?? this.title,
creationDate: creationDate ?? this.creationDate,
updateDate: updateDate ?? this.updateDate,
);
}