alphaUpperChars property

List<String> alphaUpperChars

Chars from A to Z

Implementation

static List<String> get alphaUpperChars =>
    alphaLowerChars.map((e) => e.toUpperCase()).toList();