isEmpty property - Iterable class - dart:core library (original) (raw)

description

bool getisEmpty

Whether this collection has no elements.

May be computed by checking if iterator.moveNext() returns false.

Example:

final emptyList = <int>[];
print(emptyList.isEmpty); // true;
print(emptyList.iterator.moveNext()); // false

Implementation

bool get isEmpty => !iterator.moveNext();