until<T> method

Future<bool> until<T>(
  1. bool predicate(
    1. TState state
    )
)

Implementation

Future<bool> until<T>(bool Function(TState state) predicate) {
  return _controller.stream.any(predicate);
}