codes top-level constant

Map<CountryKey, String> const codes

Map for amazon's contry code.

Implementation

const Map<CountryKey, String> codes = {
  CountryKey.USA: '01',
  CountryKey.UK: '02',
  CountryKey.Germany: '03',
  CountryKey.France: '08',
  CountryKey.Japan: '09',
  CountryKey.Canada: '15',
  CountryKey.China: '28',
  CountryKey.Italy: '29',
  CountryKey.Spain: '30',
  CountryKey.India: '31',
  CountryKey.Brazil: '32',
  CountryKey.Mexico: '33',
  CountryKey.Australia: '35',
};