Attachment constructor

Attachment({
  1. required Uri uri,
  2. String? mimeType,
  3. String? fileName,
})

Implementation

Attachment({
  required this.uri,
  this.mimeType,
  this.fileName,
});