copyWith method

WorkflowId copyWith({
  1. bool? draft,
  2. String? name,
})

Implementation

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