InteractionInput.fromStream constructor

InteractionInput.fromStream(
  1. Stream<List<int>> stream
)

Creates an InteractionInput from a byte stream.

Implementation

factory InteractionInput.fromStream(Stream<List<int>> stream) =>
    StreamInput(stream);