copyWith method
Implementation
FwStandardModulesSettingsWidgetSettingsWidgetWidgetDataSet copyWith({
String? label,
List<double>? data,
List<String>? backgroundColor,
List<String>? borderColor,
int? borderWidth,
}) {
return FwStandardModulesSettingsWidgetSettingsWidgetWidgetDataSet(
label: label ?? this.label,
data: data ?? this.data,
backgroundColor: backgroundColor ?? this.backgroundColor,
borderColor: borderColor ?? this.borderColor,
borderWidth: borderWidth ?? this.borderWidth,
);
}