setLiveMixView method

Future<int> setLiveMixView(
  1. RCRTCView view
)

ZH

设置合流视频View @param view @return 0: 成功, 非0: 失败

EN

Set composite video view @param view @return 0: success, non-zero: failure

Implementation

Future<int> setLiveMixView(RCRTCView view) async {
  Map<String, dynamic> arguments = {'view': view._id};
  int code = await _channel.invokeMethod('setLiveMixView', arguments) ?? -1;
  return code;
}