TransitionUpdateDTO constructor
TransitionUpdateDTO({
- List<
WorkflowRuleConfiguration> ? actions, - ConditionGroupUpdate? conditions,
- String? customIssueEventId,
- String? description,
- List<
StatusReferenceAndPort> ? from, - required String id,
- required String name,
- Map<
String, dynamic> ? properties, - StatusReferenceAndPort? to,
- WorkflowRuleConfiguration? transitionScreen,
- List<
WorkflowTrigger> ? triggers, - required TransitionUpdateDTOType type,
- List<
WorkflowRuleConfiguration> ? validators,
Implementation
TransitionUpdateDTO(
{List<WorkflowRuleConfiguration>? actions,
this.conditions,
this.customIssueEventId,
this.description,
List<StatusReferenceAndPort>? from,
required this.id,
required this.name,
this.properties,
this.to,
this.transitionScreen,
List<WorkflowTrigger>? triggers,
required this.type,
List<WorkflowRuleConfiguration>? validators})
: actions = actions ?? [],
from = from ?? [],
triggers = triggers ?? [],
validators = validators ?? [];