allFalse method
Returns true if all values are false.
Implementation
bool allFalse() {
for (final v in this) {
if (v == true) return false;
}
return true;
}
Returns true if all values are false.
bool allFalse() {
for (final v in this) {
if (v == true) return false;
}
return true;
}