getInchesFromFeet property

int getInchesFromFeet

Converts a given number of feet to inches

Implementation

int get getInchesFromFeet {
  return this * 12;
}