removeAll method

void removeAll()

Remove all toasts held by this Toastify.

Implementation

void removeAll() {
  while (items.isNotEmpty) {
    remove(items.last.child);
  }
}