setLocalLiveMixInnerCdnVideoFps method

Future<int> setLocalLiveMixInnerCdnVideoFps(
  1. RCRTCVideoFps fps
)

Implementation

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