KBSearchResult constructor

const KBSearchResult({
  1. required String path,
  2. required String entityType,
  3. Question? question,
  4. Answer? answer,
  5. Note? note,
  6. required List<String> matchedTags,
})

Implementation

const KBSearchResult({
  required this.path,
  required this.entityType,
  this.question,
  this.answer,
  this.note,
  required this.matchedTags,
});