PipControls constructor

const PipControls({
  1. Key? key,
  2. bool isPlaying = false,
  3. VoidCallback? onPlayPause,
  4. VoidCallback? onRewind,
  5. VoidCallback? onForward,
  6. VoidCallback? onFullscreen,
  7. Color iconColor = Colors.white,
  8. double iconSize = 24.0,
  9. Color backgroundColor = Colors.black87,
  10. double height = 48.0,
})

Creates new PipControls

Implementation

const PipControls({
  super.key,
  this.isPlaying = false,
  this.onPlayPause,
  this.onRewind,
  this.onForward,
  this.onFullscreen,
  this.iconColor = Colors.white,
  this.iconSize = 24.0,
  this.backgroundColor = Colors.black87,
  this.height = 48.0,
});