KnowledgeBase constructor

KnowledgeBase({
  1. KnowledgeBaseLinks? links,
  2. DateTime? createdAt,
  3. String? description,
  4. String? id,
  5. required String name,
  6. String? type,
  7. DateTime? updatedAt,
})

Returns a new KnowledgeBase instance.

Implementation

KnowledgeBase({
  this.links,
  this.createdAt,
  this.description,
  this.id,
  required this.name,
  this.type,
  this.updatedAt,
});