DownloadAttachmentDto constructor

DownloadAttachmentDto({
  1. required String base64FileContents,
  2. required String contentType,
  3. required int sizeBytes,
})

Returns a new DownloadAttachmentDto instance.

Implementation

DownloadAttachmentDto({
  required this.base64FileContents,
  required this.contentType,
  required this.sizeBytes,
});