lowerCaseLatin constant

List<String> const lowerCaseLatin

Lower-case latin number characters.

Implementation

static const lowerCaseLatin = [
  '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', // digits
  'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', // letters
  'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
  'u', 'v', 'w', 'x', 'y', 'z',
];