isEmpty property Null safety
Returns true if there are no elements in this collection.
May be computed by checking if iterator.moveNext() returns false.
Implementation
@override
bool get isEmpty => _values.isEmpty;
Returns true if there are no elements in this collection.
May be computed by checking if iterator.moveNext() returns false.
@override
bool get isEmpty => _values.isEmpty;