emit method

void emit()

Sign to all slots

Implementation

void emit() {
  for (var slot in slots) {
    slot.onValue(value);
  }
}