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