copyWith method
WorkflowReferenceStatus
copyWith({
- bool? deprecated,
- WorkflowStatusLayout? layout,
- Map<
String, dynamic> ? properties, - String? statusReference,
Implementation
WorkflowReferenceStatus copyWith(
{bool? deprecated,
WorkflowStatusLayout? layout,
Map<String, dynamic>? properties,
String? statusReference}) {
return WorkflowReferenceStatus(
deprecated: deprecated ?? this.deprecated,
layout: layout ?? this.layout,
properties: properties ?? this.properties,
statusReference: statusReference ?? this.statusReference,
);
}