GlossaryEntry constructor

GlossaryEntry({
  1. String? description,
  2. String? name,
  3. GlossaryTermsPair? termsPair,
  4. GlossaryTermsSet? termsSet,
})

Implementation

GlossaryEntry({
  this.description,
  this.name,
  this.termsPair,
  this.termsSet,
});