cm property

Centimeter get cm

Implementation

Centimeter get cm {
  return when(
    cm: (value) => Centimeter(value),
    inch: (value, _) => Centimeter(value * 2.54),
  );
}