ReactiveListHelpers<E> extension

Helper extension methods for reactive lists.

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

on

Methods

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

Available on Reactive<List<E>>, provided by the ReactiveListHelpers extension

Adds an effect that runs whenever the list changes.
unwrap() List<E>

Available on Reactive<List<E>>, provided by the ReactiveListHelpers extension

Returns the non-reactive list value.