complain abstract method

Future<void> complain({
  1. required String callId,
  2. required String description,
})

Allows a user to complain about the call quality after a call ends.

This method allows users to complain about the quality of the call. Call this method after the user leaves the channel.

  • callId The current call ID. You can get the call ID by calling getCallId.
  • description A description of the call. The string length should be less than 800 bytes.

Returns When the method call succeeds, there is no return value; when fails, the AgoraRtcException exception is thrown. You need to catch the exception and handle it accordingly.

Implementation

Future<void> complain({required String callId, required String description});