containsKey method

bool containsKey(
  1. 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);