setTrackParameters method
Sets the video track parameters (used to select quality of the video)
Implementation
@override
Future<void> setTrackParameters(
int? textureId, int? width, int? height, int? bitrate) {
return _channel.invokeMethod<void>(
'setTrackParameters',
<String, dynamic>{
'textureId': textureId,
'width': width,
'height': height,
'bitrate': bitrate,
},
);
}