PipView constructor

const PipView({
  1. Key? key,
  2. required PipController controller,
  3. required Widget content,
  4. Widget? controls,
  5. VoidCallback? onClose,
  6. VoidCallback? onExpand,
  7. VoidCallback? onTap,
  8. VoidCallback? onReelsUp,
  9. VoidCallback? onReelsDown,
})

Creates a new PipView

Implementation

const PipView({
  super.key,
  required this.controller,
  required this.content,
  this.controls,
  this.onClose,
  this.onExpand,
  this.onTap,
  this.onReelsUp,
  this.onReelsDown,
});