merge static method

KeyBindings merge(
  1. List<KeyBindings> collections
)

Merges multiple KeyBindings collections.

Implementation

static KeyBindings merge(List<KeyBindings> collections) {
  return KeyBindings(collections.expand((c) => c._bindings).toList());
}