String currency(num? n, [int decimals = 2]) => NumberFormat.simpleCurrency(locale: localeUS, decimalDigits: decimals) .format(n?.toDouble() ?? 0);