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