static String formatKg(String value) { if (value.length == 3) { return '${value.substring(0, 2)}.${value.substring(2)}'; } return value; }