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