BufferedKeys.fromStream constructor

BufferedKeys.fromStream(
  1. Stream<List<int>> input
)

Creates a new buffered keys instance from the provided input stream.

The class will listen to the stream and update the buffer as events are received.

Implementation

factory BufferedKeys.fromStream(Stream<List<int>> input) = _AsyncBufferedKeys;