getMetersFromInchesAsString property
String
get
getMetersFromInchesAsString
Converts a given number of inches to meters, returns meters as a string to 2 decimal places
Implementation
String get getMetersFromInchesAsString {
final double meters = getMetersFromInches;
return "(${meters.toStringAsFixed(2)})";
}