copyWith method
Implementation
CFeedBackControl<T> copyWith({bool? show, T? data}) {
return CFeedBackControl(
show: show ?? this.show,
data: data ?? this.data,
);
}
CFeedBackControl<T> copyWith({bool? show, T? data}) {
return CFeedBackControl(
show: show ?? this.show,
data: data ?? this.data,
);
}