startsWith 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> startsWith(Expr<String> value) =>
ExpressionStringStartsWith(this, value);