copyWith method

WorkflowReferenceStatus copyWith({
  1. bool? deprecated,
  2. WorkflowStatusLayout? layout,
  3. Map<String, dynamic>? properties,
  4. 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,
  );
}