symbol property

String symbol

Returns unicode symbol for country code

Implementation

String get symbol {
  const base = 0x1f1a5;
  if (_code & 0x3ff != 0) {
    _unpackAlpha2(_code);
    return String.fromCharCodes(<int>[base + _a2cu[0], base + _a2cu[1]]);
  }
  return '';
}