congestionControl property

WebTransportCongestionControl? get congestionControl

Implementation

_i3.WebTransportCongestionControl? get congestionControl =>
    switch (_i4.getProperty(
      this,
      'congestionControl',
    )) {
      _i2.String name =>
        _i3.WebTransportCongestionControlOptions.values.byName(name),
      _ => null
    };
set congestionControl (WebTransportCongestionControl? value)

Implementation

set congestionControl(_i3.WebTransportCongestionControl? value) {
  _i4.setProperty(
    this,
    'congestionControl',
    value?.name ?? _i6.undefined ?? _i6.undefined,
  );
}