remove method
Remove a particular value associated with a key.
For the key
all values that match value
are removed.
If raw
is true, the value
must match exactly for it to be removed.
Otherwise (the default), the value is removed if its sanitized value
is the same as the sanitized value
: where all leading and trailing
whitespace are removed and multiple whitespaces are treated as a single
space.
Implementation
void remove(String key, String value, {bool raw: false}) =>
_remove(key, value, raw: raw);