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