finap_currency_helper 0.0.2 finap_currency_helper: ^0.0.2 copied to clipboard
Currency related utility functions.
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'