addAll method

void addAll()

Adds all messages

This results into 1:*.

Implementation

void addAll() {
  // 1:*
  final wasEmpty = isEmpty;
  _isAllAdded = true;
  _text = wasEmpty ? '1:*' : null;
}