copyWithWrapped method
Implementation
TrendValueV2 copyWithWrapped(
{Wrapped<double?>? $value, Wrapped<DateTime?>? createdTimestamp}) {
return TrendValueV2(
$value: ($value != null ? $value.value : this.$value),
createdTimestamp: (createdTimestamp != null
? createdTimestamp.value
: this.createdTimestamp));
}