unbindKey static method
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');
}
}