clearAll method

void clearAll()

Implementation

void clearAll() {
  for (final toast in List<OverlayEntry>.from(_activeToasts)) {
    _removeToast(toast);
  }
}