length property

Expression<int> get length

Calls the sqlite function LENGTH on this string, which counts the number of characters in this string. Note that, in most sqlite installations, length may not support all unicode rules.

See also:

Implementation

Expression<int> get length {
  return FunctionCallExpression('LENGTH', [this]);
}