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