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