copyWith method
Implementation
DeviceConnectionHistoryInsertV3Body copyWith(
{int? totalDeviceCount,
int? totalOncueDeviceCount,
int? totalHEPDeviceCount}) {
return DeviceConnectionHistoryInsertV3Body(
totalDeviceCount: totalDeviceCount ?? this.totalDeviceCount,
totalOncueDeviceCount:
totalOncueDeviceCount ?? this.totalOncueDeviceCount,
totalHEPDeviceCount: totalHEPDeviceCount ?? this.totalHEPDeviceCount);
}