Returns a new lazy Iterable with all elements which are not null.
Iterable<E> filterNotNull() => where((element) => element != null);