num celsiusToFahrenheit(num value, [int? digit]) { int digitLen = _digitLength(value); return toFixed(value * 9 / 5 + 32, digit ?? digitLen); }