copyWith method
Implementation
ChartAccessibilityOptions copyWith({
String? semanticLabel,
bool? excludeFromSemantics,
}) {
return ChartAccessibilityOptions(
semanticLabel: semanticLabel ?? this.semanticLabel,
excludeFromSemantics: excludeFromSemantics ?? this.excludeFromSemantics,
);
}