Returns true if all elements match the predicate.
true
final allPositive = DoubleStream.of([1.5, 2.5, 3.5]) .allMatch((d) => d > 0); // true
bool allMatch(bool Function(double) predicate);