Currency Helper
Features
- Remove ',' from amount `
Getting started
This package can be used without any dependency
Usage
const amount = '23,332.00';
CurrencyHelper currencyHelper = CurrencyHelper();
const formattedAmount = currencyHelper.trimCommaOfString(amount);
// Formatted Amount should be like '23332.00'