copyWith method
Implementation
ChartVisibilityOptions copyWith({
bool? showGrid,
bool? showLegend,
bool? showValues,
bool? showLabels,
bool? showAxisLabels,
}) {
return ChartVisibilityOptions(
showGrid: showGrid ?? this.showGrid,
showLegend: showLegend ?? this.showLegend,
showValues: showValues ?? this.showValues,
showLabels: showLabels ?? this.showLabels,
showAxisLabels: showAxisLabels ?? this.showAxisLabels,
);
}