send method

void send(
  1. T event
)

Sends event to all readers of the channel.

Implementation

void send(T event) => _channel.send(event);