isEmpty property

bool get isEmpty
inherited

Implementation

bool get isEmpty => switch (knownSize) {
      -1 => iterator.hasNext,
      0 => true,
      _ => false,
    };