FastVideoVolumeButton constructor

const FastVideoVolumeButton({
  1. Key? key,
  2. required VideoPlayerController controller,
  3. Widget? volumeIcon,
  4. Widget? muteIcon,
})

Implementation

const FastVideoVolumeButton({
  super.key,
  required this.controller,
  this.volumeIcon,
  this.muteIcon,
});