LinearBorderPainter constructor

LinearBorderPainter({
  1. required Color color,
  2. required double width,
  3. double? radius,
})

Implementation

LinearBorderPainter({
  required this.color,
  required this.width,
  this.radius,
});