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