ChannelerCallback<T> typedef
ChannelerCallback<T> =
void Function(T? value)
Signature used for every listener registered inside the Channeler communication system. Whenever a matching event is emitted on a channel, all callbacks subscribed to that channel receive the latest emitted value allowing reactive communication between completely independent components.
Implementation
typedef ChannelerCallback<T> = void Function(T? value);