get method

Stream<List<int>> get(
  1. StreamInfo streamInfo
)

Gets the actual stream which is identified by the specified metadata. Usually this downloads the bytes of the stream. For HLS streams all the fragments are concatenated into a single stream.

Implementation

Stream<List<int>> get(StreamInfo streamInfo) =>
    _httpClient.getStream(streamInfo, streamClient: this);