toCurrency method

String toCurrency({
  1. String symbol = '\$',
  2. String locale = 'en_US',
})

Convert number to currency format

Implementation

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