geekLetter constant

List<String> const geekLetter

Greek letters used as prefixes for resolving naming conflicts.

When class name conflicts occur, these Greek letters are prepended to the class name to make it unique. The list is ordered from Alpha (first choice) to Omega (last choice).

Implementation

static const geekLetter = [
  'Alpha',
  'Beta',
  'Gamma',
  'Delta',
  'Epsilon',
  'Zeta',
  'Eta',
  'Theta',
  'Iota',
  'Kappa',
  'Lambda',
  'Mu',
  'Nu',
  'Xi',
  'Omicron',
  'Pi',
  'Rho',
  'Sigma',
  'Tau',
  'Upsilon',
  'Phi',
  'Chi',
  'Psi',
  'Psi',
  'Omega',
];