copyWith method

WorkflowRulesSearch copyWith({
  1. String? expand,
  2. List<String>? ruleIds,
  3. String? workflowEntityId,
})

Implementation

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