bmi property

double bmi

Implementation

double get bmi {
  return weight / (((height * height) / 100.0) / 100.0);
}