pipeThrough property

ReadableStream<T> Function<T>(ReadableWritablePair<T, R>, [StreamPipeOptions?]) get pipeThrough

Implementation

_i3.ReadableStream<T> Function<T>(
  _i3.ReadableWritablePair<T, R>, [
  _i3.StreamPipeOptions?,
]) get pipeThrough => <T>(
      _i3.ReadableWritablePair<T, R> p0, [
      _i3.StreamPipeOptions? p1,
    ]) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'pipeThrough',
          ),
          r'call',
          [
            this,
            p0,
            p1 ?? _i6.undefined,
          ],
        );
set pipeThrough (ReadableStream<T> value<T>(ReadableWritablePair<T, R>, [StreamPipeOptions?]))

Implementation

set pipeThrough(
    _i3.ReadableStream<T> Function<T>(
      _i3.ReadableWritablePair<T, R>, [
      _i3.StreamPipeOptions?,
    ]) value) {
  _i4.setProperty(
    this,
    'pipeThrough',
    _i4.allowInterop(value),
  );
}