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