numCurrency property

String numCurrency

Format numeric currency

Implementation

String get numCurrency =>
    intl.NumberFormat.currency(customPattern: "#,##0.00")
        .format(double.tryParse(this))
        .toString();