endsWithValue method

Expr<bool> endsWithValue(
  1. String value
)

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