containsKey method
- String prefix
Checks if the mappings contain a specific prefix.
The prefix
is the prefix to check for.
Returns true if the prefix exists, false otherwise.
Implementation
bool containsKey(String prefix) => _mappings.containsKey(prefix);