MailAttachment constructor

const MailAttachment({
  1. required String filePath,
  2. String? fileName,
  3. String? contentType,
})

Implementation

const MailAttachment({
  required this.filePath,
  this.fileName,
  this.contentType,
});