pingChannel<T> method
Emits new data into the specified communication channel directly from the current widget context. Every listener subscribed to the matching channel receives the emitted payload allowing reactive communication between completely independent parts of the application architecture.
Implementation
void pingChannel<T>(Channel<T> channel, T? data) {
channeler.ping(channel, data);
}