every method
bool every(Checks whether every element of this iterable satisfies test
.
Checks every element in iteration order, and returns false
if any of them make test
return false
, otherwise returns true
.
Source
bool every(bool f(String element)) => readClasses().every(f);
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-svg/AttributeClassSet/every.html