notNull method

Iterable<V> notNull()

Implementation

Iterable<V> notNull() {
  return this.where((element) => element != null).cast<V>();
}