copyWith method
Implementation
CirclifyItem copyWith({
Color? color,
double? value,
String? label,
}) {
return CirclifyItem(
id: id,
color: color ?? this.color,
value: value ?? this.value,
label: label ?? this.label,
);
}
CirclifyItem copyWith({
Color? color,
double? value,
String? label,
}) {
return CirclifyItem(
id: id,
color: color ?? this.color,
value: value ?? this.value,
label: label ?? this.label,
);
}