uploadFile abstract method

  1. @POST("rtc/meeting/chat/uploadAttachment")
  2. @MultiPart()
Future<BaseResponse<UploadData>> uploadFile(
  1. @Part() File file, {
  2. @SendProgress() ProgressCallback? onSendProgress,
})

Implementation

@POST("rtc/meeting/chat/uploadAttachment")
@MultiPart()
Future<BaseResponse<UploadData>> uploadFile(@Part() File file,
    {@SendProgress() ProgressCallback? onSendProgress});