onEachAdd method

void onEachAdd(
  1. T event
)

Implementation

void onEachAdd(T event) {
  for (final listener in this) {
    try {
      listener.add(event);
    } catch (_) {
      // ignore
    }
  }
}