emit method
void
emit()
Sign to all slots
Implementation
void emit() {
for (var slot in slots) {
slot.onValue(value);
}
}
Sign to all slots
void emit() {
for (var slot in slots) {
slot.onValue(value);
}
}