static String formatInt(int? value) { if (value == null) return '0'; return value.toStringAsFixed(0); }