TerminalBridgeMessage.inputBytes constructor
Creates a binary input message from the host to the runtime.
Implementation
factory TerminalBridgeMessage.inputBytes(List<int> bytes) {
return TerminalBridgeMessage._(
type: TerminalBridgeMessageType.inputBytes,
bytesBase64: base64Encode(bytes),
);
}