WorkflowTransition constructor

WorkflowTransition({
  1. List<String>? fields = const [],
  2. String? description,
  3. WorkflowState? from,
  4. String? id,
  5. String? name,
  6. List<String>? required_ = const [],
  7. WorkflowState? to,
  8. String? type,
})

Returns a new WorkflowTransition instance.

Implementation

WorkflowTransition({
  this.fields = const [],
  this.description,
  this.from,
  this.id,
  this.name,
  this.required_ = const [],
  this.to,
  this.type,
});