removeNulls method

  1. @useCopy
IList<T> removeNulls()

Removes all nulls from this list.

Implementation

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