subscribeLiveMix method

Future<int> subscribeLiveMix(
  1. RCRTCMediaType type, [
  2. bool tiny = true
])

Implementation

Future<int> subscribeLiveMix(
  RCRTCMediaType type, [
  bool tiny = true,
]) async {
  Map<String, dynamic> arguments = {
    'type': type.index,
    'tiny': tiny,
  };
  int code = await _channel.invokeMethod('subscribeLiveMix', arguments) ?? -1;
  return code;
}