cToCurrencyIND property

String cToCurrencyIND

Converts a number string to Indian currency format.

Implementation

String get cToCurrencyIND {
  return NumberFormat.currency(
    symbol: '₹ ',
    locale: 'HI',
    decimalDigits: 2,
  ).format(double.parse(this));
}