copyWithWrapped method
Implementation
DashboardCallSuccessChartModel copyWithWrapped(
{Wrapped<String>? name, Wrapped<String?>? type}) {
return DashboardCallSuccessChartModel(
name: (name != null ? name.value : this.name),
type: (type != null ? type.value : this.type));
}