MapUtil class

A collection of Map related utilities.

Constructors

MapUtil()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

auto<K, V>(Map<K, V> creator()) Map<K, V>
Returns a map that will be created only when necessary, such as
copy<K, V>(Map<K, V?> source, Map<K, V?> dest, [bool filter(K key, V? value)?]) Map<K, V?>
Copies the given map (source) to the destination (dest).
parse(String data, {bool backslash = true, String defaultValue = ""}) Map<String, String>
Parses the given string into a map.