Options constructor

Options({
  1. Map<String, Matcher>? matchers,
  2. Map<String, List<String>>? l33tTable,
  3. Dictionary? dictionary,
  4. Translations? translations,
  5. AdjacencyGraphsMixin? graphs,
  6. bool? useLevenshteinDistance,
  7. int? levenshteinThreshold,
  8. int? l33tMaxSubstitutions,
  9. int? maxLength,
})

Implementation

Options({
  this.matchers,
  this.l33tTable,
  this.dictionary,
  this.translations,
  this.graphs,
  this.useLevenshteinDistance,
  this.levenshteinThreshold,
  this.l33tMaxSubstitutions,
  this.maxLength,
});