addInboundJson method

void addInboundJson(
  1. String message
)

Decodes and applies one inbound JSON message.

Implementation

void addInboundJson(String message) {
  if (_disposed) return;
  _dispatch(TerminalBridgeMessage.decodeJson(message));
}