trim method

Expression<String> trim()

Removes spaces from both ends of this string.

Implementation

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