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