setLiveMixVideoBitrate method
Implementation
Future<int> setLiveMixVideoBitrate(
int bitrate, [
bool tiny = false,
]) async {
Map<String, dynamic> arguments = {
'bitrate': bitrate,
'tiny': tiny,
};
int code = await _channel.invokeMethod('setLiveMixVideoBitrate', arguments) ?? -1;
return code;
}