containsLast method
Checks if this sequence contains the last indicator in some form - '*'
Implementation
bool containsLast() {
return _isLastAdded || _isAllAdded;
}
Checks if this sequence contains the last indicator in some form - '*'
bool containsLast() {
return _isLastAdded || _isAllAdded;
}