getMetersFromInches property
double
get
getMetersFromInches
Converts a given number of inches to meters, returns meters as a double
Implementation
double get getMetersFromInches {
return this / (3.2808 * 12);
}