stopAudioMixing method Null safety

Future<int> stopAudioMixing()

Stops audio mixing.

The method stops audio mixing and playback. Call the method after you join a room.

Return 0 indicates a successful call.

Implementation

Future<int> stopAudioMixing() async {
  IntValue reply = await _api.stopAudioMixing();
  return reply.value ?? -1;
}