diameter/lib/utils/utils.dart
2021-10-23 01:08:09 +02:00

10 lines
225 B
Dart

class Utils {
static double convertMgPerDlToMmolPerL(int mgPerDl) {
return (mgPerDl / 18.018).roundToDouble();
}
static int convertMmolPerLToMgPerDl(double mmolPerL) {
return (mmolPerL * 18.018).round();
}
}