greekNumberSuffixes top-level constant

List<String> const greekNumberSuffixes

A list of Greek number suffixes used for large numbers representation.

The suffixes are used to denote large values such as thousands, millions, billions, and beyond.

Implementation

const greekNumberSuffixes = <String>[
  'K', // Thousand represents 1000
  'M', // Million represents 1000000
  'B', // Billion represents 1000000000
  'T', // Trillion represents 1000000000000
  'Q', // Quadrillion represents 1000000000000000
  'P', // Quintillion represents 1000000000000000000
  'E', // Exa represents 1000000000000000000000
  'Z', // Zetta represents 1000000000000000000000000
  'Y', // Yotta represents 1000000000000000000000000000
];