copyWith method
Implementation
DeviceAnalyticsDTO copyWith(
{int? totalDeviceCount,
int? totalOncueDeviceCount,
int? totalHEPDeviceCount,
double? averageDeviceCount,
double? averageOncueDeviceCount,
double? averageHEPDeviceCount}) {
return DeviceAnalyticsDTO(
totalDeviceCount: totalDeviceCount ?? this.totalDeviceCount,
totalOncueDeviceCount:
totalOncueDeviceCount ?? this.totalOncueDeviceCount,
totalHEPDeviceCount: totalHEPDeviceCount ?? this.totalHEPDeviceCount,
averageDeviceCount: averageDeviceCount ?? this.averageDeviceCount,
averageOncueDeviceCount:
averageOncueDeviceCount ?? this.averageOncueDeviceCount,
averageHEPDeviceCount:
averageHEPDeviceCount ?? this.averageHEPDeviceCount);
}