getCurrency static method
Get a currency by code
Implementation
static CurrencyInfo? getCurrency(String code) {
_initializeDefaultCurrencies();
return _currencies[code.toUpperCase()];
}
Get a currency by code
static CurrencyInfo? getCurrency(String code) {
_initializeDefaultCurrencies();
return _currencies[code.toUpperCase()];
}