compactCurrency method
Implementation
String compactCurrency({
String symbol = '৳',
String? locale,
int decimalDigits = 1,
}) {
return NumberFormat.compactCurrency(
locale: locale,
symbol: symbol,
decimalDigits: decimalDigits,
).format(this);
}