setChannelProfile method

  1. @override
Future<void> setChannelProfile(
  1. ChannelProfile profile
)

Sets the channel profile of the Meta RtcEngine.

The Meta RtcEngine differentiates channel profiles and applies different optimization algorithms accordingly. For example, it prioritizes smoothness and low latency for a video call, and prioritizes video quality for a video broadcast.

Parameter profile The channel profile of the Meta RtcEngine. See ChannelProfile.

Implementation

@override
Future<void> setChannelProfile(ChannelProfile profile) {
  return _invokeMethod('setChannelProfile',
      {'profile': ChannelProfileConverter(profile).value()});
}