removeGroupSharedFile method

Future<void> removeGroupSharedFile(
  1. String groupId,
  2. String fileId
)

删除指定的群组共享文件。

群成员可删除自己上传的文件,群主或者管理员可删除所有共享文件。

Param groupId 群组 ID。

Param fileId 共享文件的 ID。

Throws 如果有异常会在此抛出,包括错误码和错误信息,详见 EMError

Implementation

Future<void> removeGroupSharedFile(
  String groupId,
  String fileId,
) async {
  Map req = {'groupId': groupId, 'fileId': fileId};
  Map result =
      await _channel.invokeMethod(ChatMethodKeys.removeGroupSharedFile, req);
  try {
    EMError.hasErrorFromResult(result);
  } on EMError catch (e) {
    throw e;
  }
}