addInboundJson method
Decodes and applies one inbound JSON message.
Implementation
void addInboundJson(String message) {
if (_disposed) return;
_dispatch(TerminalBridgeMessage.decodeJson(message));
}
Decodes and applies one inbound JSON message.
void addInboundJson(String message) {
if (_disposed) return;
_dispatch(TerminalBridgeMessage.decodeJson(message));
}