static String formatDouble(double? value) { if (value == null) return '0.00'; return curFormat.format(value); }