formatCurrency static method

String formatCurrency(
  1. double money
)

Implementation

static String formatCurrency(double money) =>
    NumberFormat(PWConfig.moneyFormat, PWConfig.localeFormat).format(money);