Removes whitespace from the start of a string.
print(trimLeft(' hello ')); // Outputs: 'hello '
String trimLeft(String s) => s.trimLeft();