updateChatAttachmentConsent abstract method

  1. @PUT.new("rtc/chatAttachmentDownloadConsent")
Future<BaseResponse<ChatAttachmentConsentModel>> updateChatAttachmentConsent(
  1. @Header.new("Authorization") String token,
  2. @Body.new() Map<String, dynamic> body
)

Implementation

@PUT("rtc/chatAttachmentDownloadConsent")
Future<BaseResponse<ChatAttachmentConsentModel>> updateChatAttachmentConsent(
  @Header("Authorization") String token,
  @Body() Map<String, dynamic> body,
);