addKeys method

  1. @override
void addKeys(
  1. Iterable<String> keys
)
inherited

Add each key in keys.

If a key does not allready exists then it is mapped to an empty value collection, otherwise no change occurs.

Implementation

@override
void addKeys(Iterable<String> keys) => keys.forEach((final key) {
      addKey(key);
    });