stream property

Stream<List<int>> stream

Will return a stream of bytes representing JPG encoded image of this slide. The first set of bytes will be the image from local cache if it exists, and when the network request returns, it will be sent as a second set of bytes. ProPresenter version 6 yields JPG bytes, but 7+ yields TIFF encoded images that we transcode to JPG in memory.

Implementation

Stream<List<int>> get stream => _sc.stream;