startsWithValue method

Expr<bool> startsWithValue(
  1. String value
)

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));