Convert number to currency format
String toCurrency({String symbol = '\$', String locale = 'en_US'}) { return NumberFormat.currency( symbol: symbol, locale: locale, ).format(this); }