formatDouble static method

String formatDouble(
  1. double? value
)

Implementation

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