send method
void
send(
- dynamic message
PubSub uses this method to send messages to subscription. This method not intended to be manual called.
Implementation
void send(dynamic message) {
_controller?.add(message);
}