Attachment constructor

Attachment({
  1. required String id,
  2. required String filename,
  3. String? description,
  4. String? contentType,
  5. int? size,
  6. String? url,
  7. String? proxyUrl,
  8. int? height,
  9. int? width,
  10. bool? ephemeral,
})

Constructor

Implementation

Attachment({
  required this.id,
  required this.filename,
  this.description,
  this.contentType,
  this.size,
  this.url,
  this.proxyUrl,
  this.height,
  this.width,
  this.ephemeral,
});