Returns whether the input contains a lowercase letter.
static bool hasLowercase(String input) => RegExp(r'[a-z]').hasMatch(input);