formatINR static method
Implementation
static String formatINR(dynamic amount, {bool showDecimals = false}) {
return NumberFormat.currency(
locale: 'en_IN', // Indian locale for proper formatting
symbol: '₹', // INR symbol
decimalDigits: showDecimals ? 2 : 0, // Control decimals
).format(amount);
}