copyWith method
Implementation
WorkflowId copyWith({bool? draft, String? name}) {
return WorkflowId(
draft: draft ?? this.draft,
name: name ?? this.name,
);
}
WorkflowId copyWith({bool? draft, String? name}) {
return WorkflowId(
draft: draft ?? this.draft,
name: name ?? this.name,
);
}