copyWith method
Implementation
DeviceCountLogDTO copyWith(
{int? oncueValue, int? hepValue, DateTime? timestamp}) {
return DeviceCountLogDTO(
oncueValue: oncueValue ?? this.oncueValue,
hepValue: hepValue ?? this.hepValue,
timestamp: timestamp ?? this.timestamp);
}