clear method

void clear(
  1. String id
)

Implementation

void clear(String id) {
  if (_entries.remove(id) == null) {
    return;
  }

  if (_lastSentEntry?.messageId == id) {
    _lastSentEntry = null;
  }

  if (!_disposed) {
    notifyListeners();
  }
}