ReactiveMapHelpers<K, V> extension

Helper extension methods for reactive maps.

These extensions provide utility methods for working with reactive maps, such as adding effects and unwrapping the reactive container.

on

Methods

addEffect(dynamic effect(Snapshot<Map<K, V>>)) StreamSubscription<Snapshot<Map<K, V>>>

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

Adds an effect that runs whenever the map changes.
unwrap() Map<K, V>

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

Returns the non-reactive map value.