DeviceResourceAuditCompanion constructor

const DeviceResourceAuditCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<DateTime> createdAt = const Value.absent(),
  3. Value<double> cpuUsage = const Value.absent(),
  4. Value<double> ramInMB = const Value.absent(),
  5. Value<double> freeRamInMB = const Value.absent(),
  6. Value<double> storageInMB = const Value.absent(),
  7. Value<double> freeStorageInMB = const Value.absent(),
})

Implementation

const DeviceResourceAuditCompanion({
  this.id = const Value.absent(),
  this.createdAt = const Value.absent(),
  this.cpuUsage = const Value.absent(),
  this.ramInMB = const Value.absent(),
  this.freeRamInMB = const Value.absent(),
  this.storageInMB = const Value.absent(),
  this.freeStorageInMB = const Value.absent(),
});