alphaNumericChars top-level property

Iterable<string> get alphaNumericChars

Chars from Aa to Zz and Numbers (0 to 9)

Implementation

Iterable<string> get alphaNumericChars => [...alphaChars, ...numberChars]..sort();