downloadMessageAttachmentInCombine method
Implementation
Future<void> downloadMessageAttachmentInCombine({required Message message}) {
return checkResult(ChatSDKEvent.downloadMessageAttachmentInCombine, () {
return Client.getInstance.chatManager
.downloadMessageAttachmentInCombine(message);
});
}