uploadGroupSharedFile method
Implementation
Future<void> uploadGroupSharedFile({
required String groupId,
required String filePath,
}) {
return checkResult(ChatSDKEvent.uploadGroupSharedFile, () {
return Client.getInstance.groupManager.uploadGroupSharedFile(
groupId,
filePath,
);
});
}