copyWith method

StatusLayoutUpdate copyWith({
  1. WorkflowLayout? layout,
  2. Map<String, dynamic>? properties,
  3. String? statusReference,
})

Implementation

StatusLayoutUpdate copyWith(
    {WorkflowLayout? layout,
    Map<String, dynamic>? properties,
    String? statusReference}) {
  return StatusLayoutUpdate(
    layout: layout ?? this.layout,
    properties: properties ?? this.properties,
    statusReference: statusReference ?? this.statusReference,
  );
}