copyWith method

AdvancedParameterDTO copyWith({
  1. int? id,
  2. String? $value,
  3. int? timestamp,
})

Implementation

AdvancedParameterDTO copyWith({int? id, String? $value, int? timestamp}) {
  return AdvancedParameterDTO(
      id: id ?? this.id,
      $value: $value ?? this.$value,
      timestamp: timestamp ?? this.timestamp);
}