addInput method

void addInput(
  1. List<int> bytes
)

Forwards raw input bytes from the host into the runtime.

Implementation

void addInput(List<int> bytes) {
  if (_disposed) return;
  backend.addInput(bytes);
}