Options constructor

Options({
  1. List<BaseMatcher> matchers = const <BaseMatcher>[],
  2. Set<Dictionaries> dictionaries = const <Dictionaries>{},
  3. L33tTable l33tTable = common.l33tTable,
  4. Graph graph = adjacencyGraph,
  5. bool useLevenshteinDistance = false,
  6. int levenshteinThreshold = 2,
  7. int l33tMaxSubstitutions = 100,
  8. int maxLength = 256,
})

Creates a new instance.

Implementation

Options({
  this.matchers = const <BaseMatcher>[],
  this.dictionaries = const <Dictionaries>{},
  this.l33tTable = common.l33tTable,
  this.graph = adjacencyGraph,
  this.useLevenshteinDistance = false,
  this.levenshteinThreshold = 2,
  this.l33tMaxSubstitutions = 100,
  this.maxLength = 256,
});