BoxBorderPainter constructor

BoxBorderPainter({
  1. double? space,
  2. required Color paintColor,
  3. double? thickness,
  4. double? borderRadius,
})

Implementation

BoxBorderPainter({
  this.space,
  required this.paintColor,
  this.thickness,
  this.borderRadius,
});