CustomIndicator constructor

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

Implementation

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