Rounds a double value to the nearest integer for display purposes. If the value is null, it returns '0'.
String parseNumericInput(double value) { return value.round().toString(); }