ValueChangeExtension<T> extension

Provides functionality for waiting until a cell changes its value

on

Methods

nextValue() Future<T>

Available on ValueCell<T>, provided by the ValueChangeExtension extension

Returns a Future that completes with the next value of this cell, when it is updated.
untilValue<U>(U value) Future<void>

Available on ValueCell<T>, provided by the ValueChangeExtension extension

Returns a Future that completes when the value of this cell equals value.