rate abstract method
给通话评分。
该方法需要在用户离开频道后调用。
callId通话 ID。你可以通过调用 getCallId 获取该参数。rating给通话的评分,最低 1 分,最高 5 分。description给通话的描述。长度应小于 800 字节。
Returns 方法成功调用时,无返回值;方法调用失败时,会抛出 AgoraRtcException 异常,你需要捕获异常并进行处理。详见错误码了解详情和解决建议。
Implementation
Future<void> rate(
{required String callId,
required int rating,
required String description});