copyWith method
Implementation
WorkflowRulesSearch copyWith(
{String? expand, List<String>? ruleIds, String? workflowEntityId}) {
return WorkflowRulesSearch(
expand: expand ?? this.expand,
ruleIds: ruleIds ?? this.ruleIds,
workflowEntityId: workflowEntityId ?? this.workflowEntityId,
);
}