copyWith method
Implementation
ChangedWorklog copyWith(
{List<EntityProperty>? properties, int? updatedTime, int? worklogId}) {
return ChangedWorklog(
properties: properties ?? this.properties,
updatedTime: updatedTime ?? this.updatedTime,
worklogId: worklogId ?? this.worklogId,
);
}