AnimatedFileListTile constructor

const AnimatedFileListTile({
  1. Key? key,
  2. required PodFileItem item,
  3. bool isSelected = false,
  4. bool isDeleting = false,
  5. VoidCallback? onTap,
  6. VoidCallback? onDelete,
  7. VoidCallback? onDownload,
})

Implementation

const AnimatedFileListTile({
  super.key,
  required this.item,
  this.isSelected = false,
  this.isDeleting = false,
  this.onTap,
  this.onDelete,
  this.onDownload,
});