UplinkNetworkInfo

Uplink network information.

class UplinkNetworkInfo {
  const UplinkNetworkInfo({this.videoEncoderTargetBitrateBps});

  @JsonKey(name: 'video_encoder_target_bitrate_bps')
  final int? videoEncoderTargetBitrateBps;
  factory UplinkNetworkInfo.fromJson(Map<String, dynamic> json) =>
      _$UplinkNetworkInfoFromJson(json);
  Map<String, dynamic> toJson() => _$UplinkNetworkInfoToJson(this);
}

Properties

videoEncoderTargetBitrateBps
Target bitrate (bps) of the video encoder.