Options constructor
Options({
- List<
BaseMatcher> matchers = const <BaseMatcher>[], - Set<
Dictionaries> dictionaries = const <Dictionaries>{}, - L33tTable l33tTable = common.l33tTable,
- Graph graph = adjacencyGraph,
- bool useLevenshteinDistance = false,
- int levenshteinThreshold = 2,
- int l33tMaxSubstitutions = 100,
- 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,
});