String intComma(num value, {String? sep}) { final defaultSep = locale.toLowerCase().startsWith('fr') ? ' ' : ','; return hz.intcomma(value, sep: sep ?? defaultSep); }