hasBindingFor method

bool hasBindingFor(
  1. LogicalKeyboardKey key
)

Check if this combo has a binding for the given key

Implementation

bool hasBindingFor(LogicalKeyboardKey key) {
  return bindings.containsKey(key);
}