WorkflowShare constructor

WorkflowShare({
  1. String? id,
  2. String? userId,
  3. String? workflowId,
  4. String? role,
  5. DateTime? createdAt,
  6. DateTime? updatedAt,
})

Implementation

WorkflowShare({
  this.id,
  this.userId,
  this.workflowId,
  this.role,
  this.createdAt,
  this.updatedAt,
});