requestPreferredStreamsForOpponents method

Future<void> requestPreferredStreamsForOpponents(
  1. Map<int, StreamType> configs
)

Requests the preferred quality for the opponents' video streams configs - is the map where key is the opponent's id and the value is the required quality of the video stream There available three types of media streams depending on the video bitrate and resolution. There are:

Implementation

Future<void> requestPreferredStreamsForOpponents(
    Map<int, StreamType> configs) {
  return _signaler.requestPreferredStreamsForUsers(configs);
}