add method

void add(
  1. T event
)

Implementation

void add(T event) {
  _value = event;
  listenable._notifyData(event);
}