CreateWorkflowTransitionDetails constructor
CreateWorkflowTransitionDetails({
- String? description,
- List<
String> ? from, - required String name,
- Map<
String, dynamic> ? properties, - CreateWorkflowTransitionRulesDetails? rules,
- CreateWorkflowTransitionScreenDetails? screen,
- required String to,
- required CreateWorkflowTransitionDetailsType type,
Implementation
CreateWorkflowTransitionDetails(
{this.description,
List<String>? from,
required this.name,
this.properties,
this.rules,
this.screen,
required this.to,
required this.type})
: from = from ?? [];