untilFalse method

Future<void> untilFalse()

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

If the value of this cell is already false, the Future completes immediately.

NOTE: An observer is added to this cell, and only removed when the cell's value is false. If this never happens, the observer is never removed.

Implementation

Future<void> untilFalse() async => untilValue(false);