streamFetch method

StreamFetchResult streamFetch(
  1. int streamId, {
  2. int? bufferSize,
})
inherited

Fetches the next chunk for a low-level native stream.

Implementation

bindings.StreamFetchResult streamFetch(
  int streamId, {
  int? bufferSize,
}) =>
    _native.streamFetch(streamId, bufferSize: bufferSize);