calculatePoundsAndInches static method

double calculatePoundsAndInches({
  1. required double weight,
  2. required double height,
})

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;
}