lowercase function
Returns a parser that accepts any lowercase character. The accepted input is
equivalent to the character-set a-z.
For example, the parser lowercase() accepts the character 'a'.
Implementation
@useResult
Parser<String> lowercase({String message = 'lowercase letter expected'}) =>
CharacterParser(const LowercaseCharPredicate(), message);