whereNotNull property

Coral<List<E>> get whereNotNull

Returns a list of all non-null elements of this collection reactively.

Implementation

Coral<List<E>> get whereNotNull =>
    coral.map((source) => List.unmodifiable(source.whereNotNull()));