String FORMAT_CURRENCY_INT(int number) { final currencyFormat = NumberFormat.currency( symbol: '\$', decimalDigits: 0 ); return currencyFormat.format(number); }