addLast method
void
addLast()
Adds the last element, which is alway *.
Implementation
void addLast() {
// *
final wasEmpty = isEmpty;
_isLastAdded = true;
_ids.add(_elementStar);
_text = wasEmpty ? '*' : null;
}