alphaUpperChars top-level property

Iterable<string> get alphaUpperChars

Chars from A to Z

Implementation

Iterable<string> get alphaUpperChars => alphaLowerChars.map((e) => e.toUpperCase()).toList();