updatePieStyle method
- PieChartStyle update(
- PieChartStyle current
Rebuilds PieChartSeries.pieStyle from its current value.
update receives the current PieChartStyle and returns the replacement, so
nested configuration is edited without re-stating the enclosing config.
Implementation
PieChartSeries updatePieStyle(
PieChartStyle Function(PieChartStyle current) update,
) => copyWith(pieStyle: update(pieStyle));