static String compact(double value, {String? locale}) { final fmt = NumberFormat.compact(locale: locale); return fmt.format(value); }