lower method

Expression<String?> lower()

Calls the sqlite function LOWER on this string. Please note that, in most sqlite installations, this only affects ascii chars.

See also:

Implementation

Expression<String?> lower() {
  return FunctionCallExpression('LOWER', [this]);
}