calculatePoundsAndInches static method
Calculate the Body Mass Index (BMI) WEIGHT in pounds and HEIGHT in inches Formula: BMI = (weight / (height * height)) * 703 Returns the BMI value as a double
Implementation
static double calculatePoundsAndInches({
required double weight,
required double height,
}) {
return (weight / (height * height)) * 703;
}