copyWith method
Implementation
TrendValueV2 copyWith({double? $value, DateTime? createdTimestamp}) {
return TrendValueV2(
$value: $value ?? this.$value,
createdTimestamp: createdTimestamp ?? this.createdTimestamp);
}
TrendValueV2 copyWith({double? $value, DateTime? createdTimestamp}) {
return TrendValueV2(
$value: $value ?? this.$value,
createdTimestamp: createdTimestamp ?? this.createdTimestamp);
}