RoundIndicator constructor

RoundIndicator({
  1. required Color color,
  2. double? top = 0,
  3. double bottom = 0,
  4. double left = 0,
  5. double right = 0,
  6. double height = 3,
  7. BorderRadius? radius,
})

Implementation

RoundIndicator(
    {required this.color,
    this.top = 0,
    this.bottom = 0,
    this.left = 0,
    this.right = 0,
    this.height = 3,
    this.radius})
    : super(
        bottom: bottom,
        color: color,
        height: height,
        radius: radius,
      );