nonNulls property - NullableIterableExtensions extension - dart:collection library (original) (raw)

description

Iterable<T> getnonNulls

The non-null elements of this iterable.

The same elements as this iterable, except that null values are omitted.

Implementation

Iterable<T> get nonNulls => NonNullsIterable<T>(this);