unbindKey static method

Future<void> unbindKey(
  1. HotKey key,
  2. bool handler()
)

Unbinds the handler from the key.

Implementation

static Future<void> unbindKey(HotKey key, bool Function() handler) async {
  final list = _keyHandlers[key];
  list?.remove(handler);

  if (list?.isEmpty == true) {
    _keyHandlers.remove(key);
  }

  if (_keyHandlers.isEmpty) {
    HardwareKeyboard.instance.removeHandler(_handleBindKeys);
  }
}