Transition constructor

Transition({
  1. required String description,
  2. required List<String> from,
  3. required String id,
  4. required String name,
  5. Map<String, dynamic>? properties,
  6. WorkflowRules? rules,
  7. TransitionScreenDetails? screen,
  8. required String to,
  9. required TransitionType type,
})

Implementation

Transition(
    {required this.description,
    required this.from,
    required this.id,
    required this.name,
    this.properties,
    this.rules,
    this.screen,
    required this.to,
    required this.type});