Returns whether the input contains an uppercase letter.
static bool hasUppercase(String input) => RegExp(r'[A-Z]').hasMatch(input);