copyWithWrapped method
Implementation
DailySleepModel copyWithWrapped(
{Wrapped<String>? id,
Wrapped<SleepContributors>? contributors,
Wrapped<DateTime>? day,
Wrapped<dynamic>? score,
Wrapped<String>? timestamp}) {
return DailySleepModel(
id: (id != null ? id.value : this.id),
contributors:
(contributors != null ? contributors.value : this.contributors),
day: (day != null ? day.value : this.day),
score: (score != null ? score.value : this.score),
timestamp: (timestamp != null ? timestamp.value : this.timestamp));
}