intComma method

String intComma(
  1. num value, {
  2. String? sep,
})

Implementation

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