mToCM static method

int mToCM(
  1. double? l
)

Implementation

static int mToCM(double? l) {
  if (l == null) return 0;
  return (l * 100).toInt();
}