complain abstract method

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

投诉通话质量。

该方法允许用户就通话质量进行投诉。需要在离开频道后调用。

  • callId 通话 ID。你可以通过调用 getCallId 获取该参数。
  • description 通话的描述。长度应小于 800 字节。

Returns 方法成功调用时,无返回值;方法调用失败时,会抛出 AgoraRtcException 异常,你需要捕获异常并进行处理。详见错误码了解详情和解决建议。

Implementation

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