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