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