dismiss method

void dismiss(
  1. String id
)

Implementation

void dismiss(String id) {
  _toasts.removeWhere((t) => t.id == id);
  _notify();
}