Returns true if all elements are resolved, NOT a Future.
Implementation
boolget isAllResolved {
if (thisisIterable<T> && _isNotFuture(T)) returntrue;
if (thisisIterable<Future<T>>) returnfalse;
for (var e inthis) {
if (e is Future) returnfalse;
}
returntrue;
}