OperationTypeWorkflow constructor

OperationTypeWorkflow({
  1. DateTime? createdAt,
  2. String? description,
  3. WorkflowState? end,
  4. String? id,
  5. String? name,
  6. WorkflowState? start,
  7. List<WorkflowState>? states = const [],
  8. List<WorkflowTransition>? transitions = const [],
  9. String? type,
  10. DateTime? updatedAt,
})

Returns a new OperationTypeWorkflow instance.

Implementation

OperationTypeWorkflow({
  this.createdAt,
  this.description,
  this.end,
  this.id,
  this.name,
  this.start,
  this.states = const [],
  this.transitions = const [],
  this.type,
  this.updatedAt,
});