lowerAlpha property

CounterStyle lowerAlpha
final

Lowercase ASCII letters (e.g., a, b, c, ..., z, aa, ab).

Implementation

static final lowerAlpha = CounterStyle.define(
  name: 'lower-alpha',
  system: System.alphabetic,
  symbols: [
    'a',
    'b',
    'c',
    'd',
    'e',
    'f',
    'g',
    'h',
    'i',
    'j',
    'k',
    'l',
    'm',
    'n',
    'o',
    'p',
    'q',
    'r',
    's',
    't',
    'u',
    'v',
    'w',
    'x',
    'y',
    'z'
  ],
);