majorSymbols constant

  1. @Deprecated('Deprecated in favor of \'majorsList\'')
Map<String, String> const majorSymbols

Map that contains the symbols from major currencies. They can be accessed using their abbreviation. e.g. majorSymbols['usd'].

Implementation

@Deprecated('Deprecated in favor of \'majorsList\'')
static const Map<String, String> majorSymbols = {
  'usd': '\$',
  'eur': '€',
  'jpy': '¥',
  'gbp': '£',
  'chf': 'fr',
  'cny': '元',
  'sek': 'kr',
  'krw': '₩',
  'inr': '₹',
  'rub': '₽',
  'zar': 'R',
  'try': '₺',
  'pln': 'zł',
  'thb': '฿',
  'idr': 'Rp',
  'huf': 'Ft',
  'czk': 'Kč',
  'ils': '₪',
  'php': '₱',
  'myr': 'RM',
  'ron': 'L'
};