OverlayPainter constructor

OverlayPainter({
  1. required Color paintColor,
  2. required Color shadowColor,
  3. bool? isDark,
  4. double? borderThickness,
  5. double? borderRadius,
})

Implementation

OverlayPainter({
  required this.paintColor,
  required this.shadowColor,
  this.isDark,
  this.borderThickness,
  this.borderRadius,
});