copyWith method

WorkflowStatus copyWith({
  1. String? id,
  2. String? name,
  3. Map<String, dynamic>? properties,
})

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,
  );
}