copyWith method
Implementation
DeviceResourceAuditCompanion copyWith(
{Value<int>? id,
Value<DateTime>? createdAt,
Value<double>? cpuUsage,
Value<double>? ramInMB,
Value<double>? freeRamInMB,
Value<double>? storageInMB,
Value<double>? freeStorageInMB}) {
return DeviceResourceAuditCompanion(
id: id ?? this.id,
createdAt: createdAt ?? this.createdAt,
cpuUsage: cpuUsage ?? this.cpuUsage,
ramInMB: ramInMB ?? this.ramInMB,
freeRamInMB: freeRamInMB ?? this.freeRamInMB,
storageInMB: storageInMB ?? this.storageInMB,
freeStorageInMB: freeStorageInMB ?? this.freeStorageInMB,
);
}