diameter/lib/utils/utils.dart

10 lines
225 B
Dart
Raw Normal View History

2021-10-22 23:08:09 +00:00
class Utils {
static double convertMgPerDlToMmolPerL(int mgPerDl) {
return (mgPerDl / 18.018).roundToDouble();
}
static int convertMmolPerLToMgPerDl(double mmolPerL) {
return (mmolPerL * 18.018).round();
}
}