PipOptions constructor

const PipOptions({
  1. bool? autoEnterEnabled,
  2. int? aspectRatioX,
  3. int? aspectRatioY,
  4. int? sourceRectHintLeft,
  5. int? sourceRectHintTop,
  6. int? sourceRectHintRight,
  7. int? sourceRectHintBottom,
  8. bool? seamlessResizeEnabled,
  9. bool? useExternalStateMonitor,
  10. int? externalStateMonitorInterval,
  11. int? sourceContentView,
  12. int? contentView,
  13. int? preferredContentWidth,
  14. int? preferredContentHeight,
  15. int? controlStyle,
})

Implementation

const PipOptions({
  this.autoEnterEnabled,

  // android only
  this.aspectRatioX,
  this.aspectRatioY,
  this.sourceRectHintLeft,
  this.sourceRectHintTop,
  this.sourceRectHintRight,
  this.sourceRectHintBottom,
  this.seamlessResizeEnabled,
  this.useExternalStateMonitor,
  this.externalStateMonitorInterval,

  // ios only
  this.sourceContentView,
  this.contentView,
  this.preferredContentWidth,
  this.preferredContentHeight,
  this.controlStyle,
});