MimeAttachmentDto constructor

MimeAttachmentDto({
  1. String? data,
  2. String? fileName,
  3. String? mimeType,
})

Returns a new MimeAttachmentDto instance.

Implementation

MimeAttachmentDto({
  this.data,
  this.fileName,
  this.mimeType,
});