Returns true if all elements are resolved, NOT a Future.
Implementation
bool get isAllResolved {
if (this is Iterable<T> && _isNotFuture(T)) return true;
if (this is Iterable<Future<T>>) return false;
for (var e in this) {
if (e is Future) return false;
}
return true;
}