static String percent(double value, {String? locale}) { final fmt = NumberFormat.percentPattern(locale); return fmt.format(value / 100); }