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