copyWith method

CFeedBackControl<T> copyWith({
  1. bool? show,
  2. T? data,
})

Implementation

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