onRemoteAudioStatusUpdated property
final
Change of Remote Audio Status
You can use this callback to get the status (Playing
, Loading
, or
Stopped
) of the audio of each remote user and display it on the UI.
- Parameters:
- reason(TRTCAVStatusChangeReason):
- Reason for the change of status.
- status(TRTCAVStatusType):
- Audio status, which may be
Playing
,Loading
, orStopped
.
- Audio status, which may be
- userId(String):
- User ID.
- reason(TRTCAVStatusChangeReason):
Implementation
final void Function(String userId, TRTCAVStatusType status, TRTCAVStatusChangeReason reason)? onRemoteAudioStatusUpdated;