clear static method

void clear()

Clears all active toasts from the screen.

Implementation

static void clear() {
  for (var toast in _toasts) {
    toast.remove();
  }
  _toasts.clear();
}