copyWith method
Implementation
WorkflowSchemeIdName copyWith({String? id, String? name}) {
return WorkflowSchemeIdName(
id: id ?? this.id,
name: name ?? this.name,
);
}
WorkflowSchemeIdName copyWith({String? id, String? name}) {
return WorkflowSchemeIdName(
id: id ?? this.id,
name: name ?? this.name,
);
}