formatCount static method

String formatCount(
  1. num count, {
  2. String locale = 'th',
})

Implementation

static String formatCount(num count, {String locale = 'th'}) {
  if (locale == 'en') {
    return _formatEnglish(count);
  } else {
    return _formatThai(count);
  }
}