UploadAttachmentOptions constructor

UploadAttachmentOptions({
  1. String? contentType,
  2. String? filename,
  3. required String base64Contents,
})

Returns a new UploadAttachmentOptions instance.

Implementation

UploadAttachmentOptions({
  this.contentType,
  this.filename,
  required this.base64Contents,
});