trimRight method

Expression<String> trimRight()

Removes spaces from the end of this string.

Implementation

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