Skip to content

imultidict<K, V>

IMultiDict<K, V> imultidict<K, V>(Iterable<Record> as)

Creates an IMultiDict from a Dart Iterable of key-value pairs.

dart
final m = imultidict([(1, 'a'), (1, 'b'), (2, 'c')]);