waitAllExecuted method

FutureOr<bool> waitAllExecuted()

Waits for all operations to execute.

Implementation

FutureOr<bool> waitAllExecuted() {
  if (_executedOperations.length == _operations.length) {
    return true;
  }
  return _waitAllExecutedImpl();
}