String formatPercent(double? value) { if (value == null) return formatNullable(value); return kPercentFormatter.format(value); }