compact method
Returns a new non-null List by filtering out null values in the this List.
Implementation
Iterable<E> compact() => whereType<E>();
Returns a new non-null List by filtering out null values in the this List.
Iterable<E> compact() => whereType<E>();