RectangularIndicator constructor

RectangularIndicator({
  1. double topRightRadius = 5,
  2. double topLeftRadius = 5,
  3. double bottomRightRadius = 0,
  4. double bottomLeftRadius = 0,
  5. Color color = Colors.black,
  6. double horizontalPadding = 0,
  7. double verticalPadding = 0,
  8. PaintingStyle paintingStyle = PaintingStyle.fill,
  9. double strokeWidth = 2,
})

Implementation

RectangularIndicator({
  this.topRightRadius = 5,
  this.topLeftRadius = 5,
  this.bottomRightRadius = 0,
  this.bottomLeftRadius = 0,
  this.color = Colors.black,
  this.horizontalPadding = 0,
  this.verticalPadding = 0,
  this.paintingStyle = PaintingStyle.fill,
  this.strokeWidth = 2,
});