clearAll method

void clearAll()

Clear all active toastrs

Implementation

void clearAll() {
  for (final entry in _activeToastrs.values) {
    entry.remove();
  }
  _activeToastrs.clear();
  _duplicateKeys.clear();
}