orEmptyIter method

Iterable<V> orEmptyIter()

Implementation

Iterable<V> orEmptyIter() {
  if (this == null) return const [];
  return this!;
}