notNull method

Iterable<E> notNull()

Implementation

Iterable<E> notNull() {
  return expand((element) => element == null ? [] : [element]);
}