footToInch method

double footToInch(
  1. double feet
)

Feet to other units

Implementation

// Foot to Inch
double footToInch(double feet) {
  return feet * 12.0;
}