getHeightFullAsString property

String getHeightFullAsString

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

Implementation

String get getHeightFullAsString {
  final String feet = getFeetInchFromFeetDecimalAsString;
  final String meters = getMetersFromInchesAsString;
  final String returnString = '$feet $meters';
  return returnString;
}