alphaNumeric property

List<Range<int>> get alphaNumeric

Alpha numeric characters include lower- and uppercase letters as well as all numbers.

See letters and numbers.

Implementation

static List<Range<int>> get alphaNumeric => [
      ...letters,
      numbers,
    ];