copyWith method

Implementation

CreateWorkflowTransitionRulesDetails copyWith(
    {CreateWorkflowCondition? conditions,
    List<CreateWorkflowTransitionRule>? postFunctions,
    List<CreateWorkflowTransitionRule>? validators}) {
  return CreateWorkflowTransitionRulesDetails(
    conditions: conditions ?? this.conditions,
    postFunctions: postFunctions ?? this.postFunctions,
    validators: validators ?? this.validators,
  );
}