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