GestureView constructor

const GestureView({
  1. Key? key,
  2. required double size,
  3. Color selectColor = Colors.blue,
  4. Color unSelectColor = Colors.grey,
  5. double ringWidth = 4,
  6. double ringRadius = 30,
  7. bool showUnSelectRing = true,
  8. double circleRadius = 20,
  9. double lineWidth = 6,
  10. dynamic onPanUp(
    1. List<int>
    )?,
  11. dynamic onPanDown()?,
  12. bool immediatelyClear = false,
  13. bool forceConsecutiveDots = false,
})

Implementation

const GestureView({
  Key? key,
  required this.size,
  this.selectColor = Colors.blue,
  this.unSelectColor = Colors.grey,
  this.ringWidth = 4,
  this.ringRadius = 30,
  this.showUnSelectRing = true,
  this.circleRadius = 20,
  this.lineWidth = 6,
  this.onPanUp,
  this.onPanDown,
  this.immediatelyClear = false,
  this.forceConsecutiveDots = false,
})  : assert(ringRadius >= circleRadius),
      super(key: key);