Lexicon constructor

Lexicon({
  1. String? content,
  2. String? name,
})

Implementation

Lexicon({
  this.content,
  this.name,
});