IndicatorShapeWidget constructor

const IndicatorShapeWidget({
  1. Key? key,
  2. required Shape shape,
  3. double? data,
  4. int index = 0,
})

Implementation

const IndicatorShapeWidget({
  Key? key,
  required this.shape,
  this.data,
  this.index = 0,
}) : super(key: key);