RenderPieChart constructor

RenderPieChart(
  1. BuildContext context,
  2. PieChartData data,
  3. PieChartData targetData,
  4. double textScale,
)

Implementation

RenderPieChart(
  BuildContext context,
  PieChartData data,
  PieChartData targetData,
  double textScale,
)   : _data = data,
      _targetData = targetData,
      _textScale = textScale,
      super(targetData.pieTouchData, context);