isEmpty property
override
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 => _length == 0;