KeyBinding.withKeys constructor

KeyBinding.withKeys(
  1. List<String> keys
)

Creates a key binding with the given keys.

Implementation

factory KeyBinding.withKeys(List<String> keys) {
  return KeyBinding(keys: keys);
}