removeNulls method

IList<T> removeNulls()

Removes all nulls from this list.

Implementation

IList<T> removeNulls() => removeAll([null]);