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