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