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