resumeAudioMixing method Null safety

Future<int> resumeAudioMixing()

The method resumes mixing audio playback and continues playing the mixing audio. You can call the method when you are in a room.

Return 0 indicates a successful call.

Implementation

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