WorkflowTypeInfo constructor

WorkflowTypeInfo({
  1. required DateTime creationDate,
  2. required RegistrationStatus status,
  3. required WorkflowType workflowType,
  4. DateTime? deprecationDate,
  5. String? description,
})

Implementation

WorkflowTypeInfo({
  required this.creationDate,
  required this.status,
  required this.workflowType,
  this.deprecationDate,
  this.description,
});