ReactiveMap<K, V> extension

Extension for Reactive<Map<K, V>> providing common map utilities.

on

Methods

clear() → void

Available on Reactive<Map<K, V>>, provided by the ReactiveMap extension

Clears all entries in the reactive map.
has(String key) bool

Available on Reactive<Map<K, V>>, provided by the ReactiveMap extension

Returns true if the reactive map contains key and its value is not null.
put(K key, V value) → void

Available on Reactive<Map<K, V>>, provided by the ReactiveMap extension

Inserts or updates a key-value pair in the reactive map.
remove(K key) → void

Available on Reactive<Map<K, V>>, provided by the ReactiveMap extension

Removes a key from the reactive map.