copyWithWrapped method

DashboardCallSuccessChartModel copyWithWrapped({
  1. Wrapped<String>? name,
  2. Wrapped<String?>? type,
})

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));
}