trimLeft method

Expression<String> trimLeft()

Removes spaces from the beginning of this string.

Implementation

Expression<String> trimLeft() {
  return FunctionCallExpression('LTRIM', [this]);
}