assertNotNullValues static method

void assertNotNullValues(
  1. List values
)

Assert each entry of values is not null.

Implementation

static void assertNotNullValues(List values) {
  for (var v in values) {
    assert(v != null);
  }
}