removeDecimalZeroFormat static method

String removeDecimalZeroFormat(
  1. double n
)

Implementation

static String removeDecimalZeroFormat(double n) {
  return n.toStringAsFixed(n.truncateToDouble() == n ? 0 : 1);
}