send method
void
send(
- T event
Sends event to all readers of the channel.
Implementation
void send(T event) => _channel.send(event);
Sends event to all readers of the channel.
void send(T event) => _channel.send(event);