FileListTileContent constructor

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

Implementation

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