copyWithWrapped method
Implementation
DailyStressModel copyWithWrapped(
{Wrapped<String>? id,
Wrapped<DateTime>? day,
Wrapped<dynamic>? stressHigh,
Wrapped<dynamic>? recoveryHigh,
Wrapped<dynamic>? daySummary}) {
return DailyStressModel(
id: (id != null ? id.value : this.id),
day: (day != null ? day.value : this.day),
stressHigh: (stressHigh != null ? stressHigh.value : this.stressHigh),
recoveryHigh:
(recoveryHigh != null ? recoveryHigh.value : this.recoveryHigh),
daySummary: (daySummary != null ? daySummary.value : this.daySummary));
}