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 {
  try {
    await hotKeyManager.unregister(key);
  } catch (e) {
    Log.warning('Unable to unbind hot key: $e', 'WebUtils');
  }
}