Convert a string to upper case.
print(toUpperCase('hello')); // Outputs: 'HELLO'
String toUpperCase(String s) => s.toUpperCase();