uploadGroupSharedFile method

Future<void> uploadGroupSharedFile(
  1. String groupId,
  2. String filePath
)

上传共享文件至群组。

Param groupId 群组 ID。

Param filePath 共享文件的本地路径。

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

Implementation

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