startsWithValue method
Check if the string starts with value.
Similar to String.startsWith in Dart.
Warning
Behavior may differ slightly between databases when using special characters or unicode.
Implementation
Expr<bool> startsWithValue(String value) =>
ExpressionStringStartsWith(this, toExpr(value));