Attachment constructor

Attachment({
  1. required String filename,
  2. required String contentType,
  3. required int size,
})

Implementation

Attachment({
  required this.filename,
  required this.contentType,
  required this.size,
});