stopClientMixedStream method

Future<int?> stopClientMixedStream(
  1. string taskId
)

@hidden for internal use only @hiddensdk(audiosdk)

Implementation

Future<int?> stopClientMixedStream(string taskId) async {
  $a() => ($instance as $p_a.RTCEngine).stopClientMixedStream(taskId);
  $i() => ($instance as $p_i.ByteRTCEngine).stopClientMixedStream(taskId);

  if (Platform.isAndroid) {
    return $a();
  } else if (Platform.isIOS) {
    return $i();
  } else {
    throw UnsupportedError(
        'Not Support Platform ${Platform.operatingSystem}');
  }
}