CommsAttachment constructor

CommsAttachment({
  1. int? width,
  2. int? height,
  3. String? fileKey,
  4. required String fileUrl,
  5. String? thumbnailUrl,
  6. String? blurHash,
  7. String? fileName,
  8. int? fileSize,
  9. required String fileType,
  10. String? contentType,
})

Implementation

CommsAttachment({
  this.width,
  this.height,
  this.fileKey,
  required this.fileUrl,
  this.thumbnailUrl,
  this.blurHash,
  this.fileName,
  this.fileSize,
  required this.fileType,
  this.contentType,
});