copyWith method

DashboardCallSuccessChartModel copyWith({
  1. String? name,
  2. String? type,
})

Implementation

DashboardCallSuccessChartModel copyWith({String? name, String? type}) {
  return DashboardCallSuccessChartModel(
      name: name ?? this.name, type: type ?? this.type);
}