PiPParams constructor

const PiPParams({
  1. double bottomSpace = 16,
  2. double leftSpace = 16,
  3. double rightSpace = 16,
  4. double topSpace = 16,
  5. double pipWindowWidth = 300,
  6. double pipWindowHeight = 150,
  7. PIPViewCorner initialCorner = PIPViewCorner.bottomRight,
  8. bool resizable = false,
  9. bool movable = true,
  10. Size minSize = const Size(200, 100),
  11. Size maxSize = const Size(300, 150),
})

Implementation

const PiPParams({
  this.bottomSpace = 16,
  this.leftSpace = 16,
  this.rightSpace = 16,
  this.topSpace = 16,
  this.pipWindowWidth = 300,
  this.pipWindowHeight = 150,
  this.initialCorner = PIPViewCorner.bottomRight,
  this.resizable = false,
  this.movable = true,
  this.minSize = const Size(200, 100),
  this.maxSize = const Size(300, 150),
});