CustomIndicator constructor

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

Implementation

CustomIndicator(
    {this.bottom = 0,
    this.top,
    this.right = 0,
    this.left = 0,
    this.width,
    required this.color,
    required this.height,
    this.radius});