getCurrency static method

CurrencyInfo? getCurrency(
  1. String code
)

Get a currency by code

Implementation

static CurrencyInfo? getCurrency(String code) {
  _initializeDefaultCurrencies();
  return _currencies[code.toUpperCase()];
}