TUIAttachmentUpload constructor

const TUIAttachmentUpload({
  1. Key? key,
  2. required String title,
  3. required bool isIconUsed,
  4. IconData? icon,
  5. TUIImage? image,
  6. String description = "",
  7. dynamic downloadTapped()?,
  8. dynamic deleteTapped()?,
})

Implementation

const TUIAttachmentUpload({
  super.key,
  required this.title,
  required this.isIconUsed,
  this.icon,
  this.image,
  this.description = "",
  this.downloadTapped,
  this.deleteTapped,
});