TcpConn constructor

TcpConn({
  1. void setNoDelay([
    1. bool?
    ])?,
  2. void setKeepAlive([
    1. bool?
    ])?,
  3. Object? localAddr,
  4. Object? remoteAddr,
  5. num? rid,
  6. ReadableStream<Uint8List>? readable,
  7. WritableStream<Uint8List>? writable,
  8. Future<void> closeWrite()?,
  9. void ref()?,
  10. void unref()?,
})

Implementation

factory TcpConn({
  void Function([_i2.bool?])? setNoDelay,
  void Function([_i2.bool?])? setKeepAlive,
  _i2.Object? localAddr,
  _i2.Object? remoteAddr,
  _i2.num? rid,
  _i5.ReadableStream<_i9.Uint8List>? readable,
  _i5.WritableStream<_i9.Uint8List>? writable,
  _i2.Future<void> Function()? closeWrite,
  void Function()? ref,
  void Function()? unref,
}) =>
    TcpConn._(
      setNoDelay: setNoDelay == null ? null : _i3.allowInterop(setNoDelay),
      setKeepAlive:
          setKeepAlive == null ? null : _i3.allowInterop(setKeepAlive),
      localAddr: localAddr ?? _i6.undefined,
      remoteAddr: remoteAddr ?? _i6.undefined,
      rid: rid,
      readable: readable ?? _i6.undefined,
      writable: writable ?? _i6.undefined,
      closeWrite: closeWrite == null ? null : _i3.allowInterop(closeWrite),
      ref: ref == null ? null : _i3.allowInterop(ref),
      unref: unref == null ? null : _i3.allowInterop(unref),
    );