XConcept constructor

XConcept({
  1. String? id,
  2. String? wikidata,
  3. String? displayName,
  4. int? level,
  5. double? score,
})

Implementation

XConcept({
  this.id,
  this.wikidata,
  this.displayName,
  this.level,
  this.score,
});