bool isMixedCase(String input) { return input.toLowerCase() != input && input.toUpperCase() != input; }