assertNotNullValues static method
Assert each entry of values
is not null.
Implementation
static void assertNotNullValues(List values) {
for (var v in values) {
assert(v != null);
}
}
Assert each entry of values
is not null.
static void assertNotNullValues(List values) {
for (var v in values) {
assert(v != null);
}
}