copyWith method
Implementation
WorkflowStatus copyWith(
{String? id, String? name, Map<String, dynamic>? properties}) {
return WorkflowStatus(
id: id ?? this.id,
name: name ?? this.name,
properties: properties ?? this.properties,
);
}