cmToM static method

double cmToM(
  1. int? l
)

Implementation

static double cmToM(int? l) {
  if (l == null) return 0;
  return l / 100.0;
}