ClientAttachmentRequest constructor

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

Implementation

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