getMuscleMass static method
肌肉量 @param: weight(kg) @param: rom(肌肉率 muscle rate) @result: (kg)
Implementation
static String getMuscleMass(
double weight,
double rom, {
int fractionDigits = 1,
}) {
return (weight * rom / 100).toStringAsFixed(fractionDigits);
}