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