没有前导空白字符的字符串。
与 trim 类似,但只移除前导空白。
final string = ' Dart '.trimLeft(); print(string); // 'Dart '
String trimLeft();