pipeThrough property

ReadableStream<T> Function<T>(dynamic, [PipeOptions?]) get pipeThrough

Implementation

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

Implementation

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