HolePainter constructor

HolePainter({
  1. double? dx,
  2. double? dy,
  3. double? width,
  4. double? height,
  5. ShapeFocus? shapeFocus = ShapeFocus.oval,
  6. required Color overlayBackgroundColor,
})

Implementation

HolePainter({
  this.dx,
  this.dy,
  this.width,
  this.height,
  this.shapeFocus = ShapeFocus.oval,
  required this.overlayBackgroundColor,
});