HolePainter constructor

HolePainter({
  1. required double holeSize,
  2. Color? outerColor,
  3. double? holePainterX,
  4. double? holePainterY,
})

Implementation

HolePainter({
  required this.holeSize,
  this.outerColor,
  this.holePainterX,
  this.holePainterY,
});