Dashboard

This commit is contained in:
Hillel Coren 2018-09-21 17:04:46 +03:00
parent b6e46fbf78
commit e09b5aeb78
1 changed files with 4 additions and 0 deletions

View File

@ -73,6 +73,10 @@ String formatNumber(
final CurrencyEntity currency = state.staticState.currencyMap[currencyId];
final CountryEntity country = state.staticState.countryMap[countryId];
if (currency == null) {
return '';
}
String thousandSeparator = currency.thousandSeparator;
String decimalSeparator = currency.decimalSeparator;
bool swapCurrencySymbol = currency.swapCurrencySymbol;