PipDragHandle constructor

const PipDragHandle({
  1. Key? key,
  2. Color color = Colors.white60,
  3. double width = 40.0,
  4. double height = 4.0,
  5. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(2.0)),
})

Creates a new PipDragHandle

Implementation

const PipDragHandle({
  super.key,
  this.color = Colors.white60,
  this.width = 40.0,
  this.height = 4.0,
  this.borderRadius = const BorderRadius.all(Radius.circular(2.0)),
});