Transition constructor
Transition({
- required String description,
- required List<
String> from, - required String id,
- required String name,
- Map<
String, dynamic> ? properties, - WorkflowRules? rules,
- TransitionScreenDetails? screen,
- required String to,
- 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});