add method

void add (String key, String value)

Adds a key:value to the parameters.

Note: if the value already exists for that key, an additional copy of it is added.

Implementation

void add(String key, String value) => _add(key, value);