10 lines
225 B
Dart
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();
|
|
}
|
|
}
|