send method

void send(
  1. T event
)

Appends an event to the channel.

Implementation

void send(T event) => _events.add(event);