emptyOnNull property

Iterable<T> emptyOnNull

if the Iterable<T>? is null returns an empty one useful with ... operator and such

Implementation

Iterable<T> get emptyOnNull => this != null ? this! : {};