FilePreviewWidget constructor

const FilePreviewWidget({
  1. Key? key,
  2. required String fileUrl,
  3. required bool isChatAttachmentDownloadEnable,
  4. bool isSender = false,
  5. bool saveAttachmentToDownloads = false,
})

Implementation

const FilePreviewWidget({
  super.key,
  required this.fileUrl,
  required this.isChatAttachmentDownloadEnable,
  this.isSender = false,
  this.saveAttachmentToDownloads = false,
});