getFeetInchFromFeetDecimalAsString property

String getFeetInchFromFeetDecimalAsString

Converts a given number of inches to feet and inches, returns the number as a string formated as "feet ' inches"

Implementation

String get getFeetInchFromFeetDecimalAsString {
  final int feet = getTruncateFeetFromInches;
  final int inches = getRemainderInchesFromInches;
  final String returnString = "$feet ' $inches";
  return returnString;
}