ClientUploadedAttachmentRequest constructor

const ClientUploadedAttachmentRequest({
  1. required Int32Type id,
  2. required String filename,
  3. required String uploadFilename,
  4. required Int32Type fileSize,
  5. required String contentType,
  6. String? title,
  7. String? description,
  8. MessageAttachmentFlags? flags,
  9. Int32Type? duration,
  10. String? waveform,
})

Implementation

const ClientUploadedAttachmentRequest({
  required this.id,
  required this.filename,
  required this.uploadFilename,
  required this.fileSize,
  required this.contentType,
  this.title,
  this.description,
  this.flags,
  this.duration,
  this.waveform,
});