mapSymbols constant

Map<NUMERAL_SYSTEMS, String> const mapSymbols

Implementation

static const Map<NUMERAL_SYSTEMS, String> mapSymbols = {
  NUMERAL_SYSTEMS.decimal: '₁₀',
  NUMERAL_SYSTEMS.hexadecimal: '₁₆',
  NUMERAL_SYSTEMS.octal: '₈',
  NUMERAL_SYSTEMS.binary: '₂',
};