PointView constructor

PointView({
  1. required double ringWidth,
  2. required double ringRadius,
  3. required bool showUnSelectRing,
  4. required double circleRadius,
  5. required Color selectColor,
  6. required Color unSelectColor,
  7. required List<Point> points,
})

Implementation

PointView(
    {required this.ringWidth,
    required this.ringRadius,
    required this.showUnSelectRing,
    required this.circleRadius,
    required this.selectColor,
    required this.unSelectColor,
    required this.points});