currencyFormat property

String get currencyFormat

Implementation

String get currencyFormat => (this != null &&
        "$this".isNotNullOrEmpty &&
        (double.tryParse("$this")?.isNegative != true))
    ? "₹ ${NumberFormat("#,##0.00", 'en-IN').format(double.tryParse(this))}"
    : "";