Attachment constructor

Attachment({
  1. required String id,
  2. required String filename,
  3. required int size,
  4. required String url,
  5. required String proxyUrl,
  6. int? height,
  7. int? width,
})

Implementation

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