reportMessage method
举报消息。
Param messageId
要举报的消息 ID。
Param tag
非法消息的标签。你需要填写自定义标签,例如涉政
或广告
。
Param reason
举报原因。你需要自行填写举报原因。
Throws 如果有异常会在此抛出,包括错误码和错误信息,详见 EMError。
Implementation
Future<void> reportMessage({
required String messageId,
required String tag,
required String reason,
}) async {
Map req = {"msgId": messageId, "tag": tag, "reason": reason};
Map result =
await ChatChannel.invokeMethod(ChatMethodKeys.reportMessage, req);
try {
EMError.hasErrorFromResult(result);
} on EMError catch (e) {
throw e;
}
}