setLiveMixVideoFps method

Future<int> setLiveMixVideoFps(
  1. RCRTCVideoFps fps, [
  2. bool tiny = false
])

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;
}