copyWith method

DeviceCountLogDTO copyWith({
  1. int? oncueValue,
  2. int? hepValue,
  3. DateTime? timestamp,
})

Implementation

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