calculateBMR abstract method

Future<double> calculateBMR({
  1. required double weight,
  2. required double height,
  3. required int age,
  4. required bool isMale,
  5. required double bodyFatPercentage,
  6. Ethnicity ethnicity = Ethnicity.white,
})

Implementation

Future<double> calculateBMR({
  required double weight,
  required double height,
  required int age,
  required bool isMale,
  required double bodyFatPercentage,
  Ethnicity ethnicity = Ethnicity.white,
});