MapMultiValueExtension<K> extension
Methods
-
getFirstValue(
K key, {bool ignoreCase = false}) → String? -
Available on Map<
Returns the first value forK, Object> , provided by the MapMultiValueExtension extensionkey
, if present. -
getMultiValue(
K key, {bool ignoreCase = false}) → List< String> ? -
Available on Map<
Returns the first values forK, Object> , provided by the MapMultiValueExtension extensionkey
. -
setMultiValue(
K key, String value, {bool ignoreCase = false}) → void -
Available on Map<
Sets the value forK, Object> , provided by the MapMultiValueExtension extensionkey
. If the value already exists, ensures that is aList<String>
.