clearEventCallback method Null safety
Unregister the callback for audio mixing events
Implementation
Future<int> clearEventCallback() async {
_handler.setCallback(null);
IntValue reply = await _api.clearAudioMixingEventCallback();
return reply.value ?? -1;
}