getChatAttachmentConsent method

  1. @Deprecated('Use getHostControls() instead.')
void getChatAttachmentConsent()

Implementation

@Deprecated('Use getHostControls() instead.')
void getChatAttachmentConsent() {
  networkRequestHandler(
      apiCall: ()=> apiClient.getChatAttachmentConsent(selfIdentity, meetingDetails.meetingUid),
      onSuccess: (data) {
        isChatAttachmentDownloadEnable = data?.chatAttachmentDownloadConsent == true;
      },
      onError: (message) {
        sendMessageToUI(message);
        isChatAttachmentDownloadEnable = false;
      }
  );
}