removeAll method
void
removeAll()
Remove all toasts held by this Toastify.
Implementation
void removeAll() {
while (items.isNotEmpty) {
remove(items.last.child);
}
}
Remove all toasts held by this Toastify.
void removeAll() {
while (items.isNotEmpty) {
remove(items.last.child);
}
}