downloadAttachment method

Future<void> downloadAttachment({
  1. required Message message,
})

Implementation

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