PodFilePreview constructor

const PodFilePreview({
  1. Key? key,
  2. required PodFileItem file,
  3. VoidCallback? onClose,
  4. bool showHeader = true,
})

Implementation

const PodFilePreview({
  super.key,
  required this.file,
  this.onClose,
  this.showHeader = true,
});