isEmpty property
override
Returns true if there are no elements in this collection.
May be computed by checking if iterator.moveNext() returns false.
Implementation
bool get isEmpty {
return (identical(_sentinel._nextLink, _sentinel));
}
Returns true if there are no elements in this collection.
May be computed by checking if iterator.moveNext() returns false.
bool get isEmpty {
return (identical(_sentinel._nextLink, _sentinel));
}