copyWith method
WorkflowStatusUpdate
copyWith({
- String? description,
- String? id,
- String? name,
- WorkflowStatusUpdateStatusCategory? statusCategory,
- String? statusReference,
Implementation
WorkflowStatusUpdate copyWith(
{String? description,
String? id,
String? name,
WorkflowStatusUpdateStatusCategory? statusCategory,
String? statusReference}) {
return WorkflowStatusUpdate(
description: description ?? this.description,
id: id ?? this.id,
name: name ?? this.name,
statusCategory: statusCategory ?? this.statusCategory,
statusReference: statusReference ?? this.statusReference,
);
}