setMaxBandwidth method

  1. @override
void setMaxBandwidth(
  1. int? bitrate
)

Sets maximum bandwidth for the local media stream bandwidth - the bandwidth in kbps, set to 0 or null for disabling the limitation

Implementation

@override
void setMaxBandwidth(int? bitrate) {
  _signaler.sendBitrateConfig(currentUserId, bitrate ?? 0);
}