convertPoundsToKilograms static method

  1. @useResult
double convertPoundsToKilograms(
  1. double pounds
)

Converts pounds to kilograms.

NaN/infinity propagate. Negative values are allowed and scale linearly.

Example:

WeightConversionUtils.convertPoundsToKilograms(2.2046226218); // 1.0

Audited: 2026-06-12 11:26 EDT

Implementation

@useResult
static double convertPoundsToKilograms(double pounds) => pounds / conversionFactor;