ReactiveSetHelpers<E> extension

Helper extension methods for reactive sets.

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

on

Methods

addEffect(dynamic effect(Snapshot<Set<E>>)) StreamSubscription<Snapshot<Set<E>>>

Available on Reactive<Set<E>>, provided by the ReactiveSetHelpers extension

Adds an effect that runs whenever the set changes.
unwrap() Set<E>

Available on Reactive<Set<E>>, provided by the ReactiveSetHelpers extension

Returns the non-reactive set value.