add method

void add(
  1. String key,
  2. String value
)
override

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);