Anagram class

The main anagram class

Constructors

Anagram()
Construction

Properties

hashCode int
The hash code for this object.
no setterinherited
ignoreCaseAll bool
Ignore case of all letters of words from dictionary.
getter/setter pair
ignoreCaseInitial bool
Ignore case of initial letters of words from dictionary.
getter/setter pair
ignorePunctuation bool
Ignore punctuation in words from dictionary.
getter/setter pair
maxWords int
Maximum number of words to return in anagram.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
verbose bool
Verbose.
getter/setter pair

Methods

initialise() → void
Initialise
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
solve(String word) List<String?>
Solve the anagram Returns a list of anagrams or an empty list if none were found.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

maxNumWords → const int