CreateWorkflowTransitionDetails constructor

CreateWorkflowTransitionDetails({
  1. String? description,
  2. List<String>? from,
  3. required String name,
  4. Map<String, dynamic>? properties,
  5. CreateWorkflowTransitionRulesDetails? rules,
  6. CreateWorkflowTransitionScreenDetails? screen,
  7. required String to,
  8. 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 ?? [];