KeyBinding constructor
KeyBinding({})
Creates a new key binding.
Implementation
KeyBinding({
List<String>? keys,
Help? help,
bool disabled = false,
this.handler,
this.action,
}) : keys = keys ?? [],
help = help ?? const Help(),
_disabled = disabled;