CardioResult constructor

CardioResult({
  1. int? heartRate,
  2. String? confidence,
  3. int? systolicBp,
  4. int? diastolicBp,
  5. int? spo2,
  6. int? respiratoryRate,
  7. int? hrv,
})

Implementation

CardioResult({
  this.heartRate,
  this.confidence,
  this.systolicBp,
  this.diastolicBp,
  this.spo2,
  this.respiratoryRate,
  this.hrv,
});