const Iterable.empty()

Creates an empty iterable.

The empty iterable has no elements, and iterating it always stops immediately.

An empty iterable can be used in places where you always that the iterable you would otherwise create is empty.

Source

const factory Iterable.empty() = EmptyIterable<E>;