bindKey static method

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

Binds the handler to be invoked on the key presses.

Implementation

static Future<void> bindKey(HotKey key, bool Function() handler) async {
  try {
    await hotKeyManager.register(key, keyDownHandler: (_) => handler());
  } catch (e) {
    Log.warning('Unable to bind to hot key: $e', 'WebUtils');
  }
}