copyWith method
StatusLayoutUpdate
copyWith({
- WorkflowLayout? layout,
- Map<
String, dynamic> ? properties, - 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,
);
}