SecondaryRenderer constructor

SecondaryRenderer({
  1. required Rect chartRect,
  2. required double maxValue,
  3. required double minValue,
  4. required SecondaryState state,
  5. required SecondaryRendererStyle style,
  6. String dataFormat(
    1. double value
    )?,
})

Implementation

SecondaryRenderer({
  required super.chartRect,
  required super.maxValue,
  required super.minValue,
  required this.state,
  required this.style,
  super.dataFormat
}) : super(style: style);