NetworkAuditCompanion constructor

const NetworkAuditCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<DateTime> createdAt = const Value.absent(),
  3. Value<double> totalDownload = const Value.absent(),
  4. Value<double> totalUpload = const Value.absent(),
  5. Value<double> downloadSpeed = const Value.absent(),
  6. Value<double> uploadSpeed = const Value.absent(),
  7. Value<bool> isWifi = const Value.absent(),
  8. Value<bool> isCellular = const Value.absent(),
  9. Value<bool> isEthernet = const Value.absent(),
  10. Value<String?> wifiSsid = const Value.absent(),
})

Implementation

const NetworkAuditCompanion({
  this.id = const Value.absent(),
  this.createdAt = const Value.absent(),
  this.totalDownload = const Value.absent(),
  this.totalUpload = const Value.absent(),
  this.downloadSpeed = const Value.absent(),
  this.uploadSpeed = const Value.absent(),
  this.isWifi = const Value.absent(),
  this.isCellular = const Value.absent(),
  this.isEthernet = const Value.absent(),
  this.wifiSsid = const Value.absent(),
});