find method

T? find(
  1. int keyCode, {
  2. bool shift = false,
  3. bool alt = false,
})

Implementation

T? find(int keyCode, {bool shift = false, bool alt = false}) {
  return _bindings[_KeyBinding(keyCode, shift: shift, alt: alt)];
}