Commit de80f9e

derdilla <82763757+NobodyForNothing@users.noreply.github.com>
2024-03-25 21:37:04
implement pressure unit
Signed-off-by: derdilla <82763757+NobodyForNothing@users.noreply.github.com>
1 parent 37affaa
Changed files (1)
app
lib
model
blood_pressure
app/lib/model/blood_pressure/pressure_unit.dart
@@ -0,0 +1,10 @@
+
+/// A unit blood pressure can be in.
+///
+/// While mmHg is more common, some devices use kPa
+enum PressureUnit {
+  /// Millimeters of mercury.
+  mmHg,
+  /// Kilo Pascal
+  kPa,
+}