RoundedPainter constructor

const RoundedPainter({
  1. double radius = 12.0,
  2. double strokeWidth = 3.0,
  3. Color? borderColor,
  4. Color? fillColor,
  5. bool repaint = false,
  6. required List<Offset> setOffsets(
    1. Size size
    ),
})

Implementation

const RoundedPainter({
  this.radius = 12.0,
  this.strokeWidth = 3.0,
  this.borderColor,
  this.fillColor,
  this.repaint = false,
  required this.setOffsets,
});