RectangleIndicator constructor

const RectangleIndicator({
  1. Key? key,
  2. double borderWidth = 2,
  3. Color? borderColor,
  4. Color color = Colors.transparent,
})

Implementation

const RectangleIndicator({
  Key? key,
  this.borderWidth = 2,
  this.borderColor,
  this.color = Colors.transparent,
}) : super(key: key);