RectanglePainterV2 constructor

RectanglePainterV2({
  1. double? topMargin,
  2. double strokeWidth = 2.0,
  3. Color strokeColor = Colors.white,
  4. Color? overlayColor,
  5. Radius? borderRadius,
})

Implementation

RectanglePainterV2({
  this.topMargin,
  this.strokeWidth = 2.0,
  this.strokeColor = Colors.white,
  this.overlayColor,
  this.borderRadius,
});